2014-08-11 02:50:56 -04:00
|
|
|
module Gitlab
|
2015-05-12 19:40:11 -04:00
|
|
|
module MarkupHelper
|
2014-08-11 02:50:56 -04:00
|
|
|
module_function
|
|
|
|
|
|
|
|
# Public: Determines if a given filename is compatible with GitHub::Markup.
|
|
|
|
#
|
|
|
|
# filename - Filename string to check
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def markup?(filename)
|
2015-05-12 19:54:13 -04:00
|
|
|
gitlab_markdown?(filename) ||
|
|
|
|
asciidoc?(filename) ||
|
|
|
|
filename.downcase.end_with?(*%w(.textile .rdoc .org .creole .wiki
|
|
|
|
.mediawiki .rst))
|
2014-08-11 02:50:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Public: Determines if a given filename is compatible with
|
|
|
|
# GitLab-flavored Markdown.
|
|
|
|
#
|
|
|
|
# filename - Filename string to check
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def gitlab_markdown?(filename)
|
2015-08-12 15:29:00 -04:00
|
|
|
filename.downcase.end_with?(*%w(.mdown .mkd .mkdn .md .markdown))
|
2014-08-11 02:50:56 -04:00
|
|
|
end
|
2014-10-04 11:56:12 -04:00
|
|
|
|
2015-05-12 19:07:48 -04:00
|
|
|
# Public: Determines if the given filename has AsciiDoc extension.
|
|
|
|
#
|
|
|
|
# filename - Filename string to check
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def asciidoc?(filename)
|
|
|
|
filename.downcase.end_with?(*%w(.adoc .ad .asciidoc))
|
|
|
|
end
|
|
|
|
|
2015-07-09 05:36:09 -04:00
|
|
|
# Public: Determines if the given filename is plain text.
|
|
|
|
#
|
|
|
|
# filename - Filename string to check
|
|
|
|
#
|
|
|
|
# Returns boolean
|
|
|
|
def plain?(filename)
|
|
|
|
filename.downcase.end_with?('.txt') ||
|
2016-04-27 18:52:32 -04:00
|
|
|
filename.casecmp('readme').zero?
|
2015-07-09 05:36:09 -04:00
|
|
|
end
|
|
|
|
|
2014-10-04 11:56:12 -04:00
|
|
|
def previewable?(filename)
|
2015-05-12 19:54:13 -04:00
|
|
|
markup?(filename)
|
2014-10-04 11:56:12 -04:00
|
|
|
end
|
2014-08-11 02:50:56 -04:00
|
|
|
end
|
|
|
|
end
|