Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/markdown_helper.rb')
-rw-r--r--lib/gitlab/markdown_helper.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/gitlab/markdown_helper.rb b/lib/gitlab/markdown_helper.rb
deleted file mode 100644
index 5e3cfc0585b..00000000000
--- a/lib/gitlab/markdown_helper.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-module Gitlab
- module MarkdownHelper
- module_function
-
- # Public: Determines if a given filename is compatible with GitHub::Markup.
- #
- # filename - Filename string to check
- #
- # Returns boolean
- def markup?(filename)
- filename.downcase.end_with?(*%w(.textile .rdoc .org .creole .wiki
- .mediawiki .rst .adoc .asciidoc .asc))
- end
-
- # Public: Determines if a given filename is compatible with
- # GitLab-flavored Markdown.
- #
- # filename - Filename string to check
- #
- # Returns boolean
- def gitlab_markdown?(filename)
- filename.downcase.end_with?(*%w(.mdown .md .markdown))
- end
-
- def previewable?(filename)
- gitlab_markdown?(filename) || markup?(filename)
- end
- end
-end