2012-04-17 17:02:21 -04:00
|
|
|
class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
|
2012-07-23 19:45:08 -04:00
|
|
|
|
|
|
|
attr_reader :template
|
|
|
|
alias_method :h, :template
|
|
|
|
|
|
|
|
def initialize(template, options = {})
|
|
|
|
@template = template
|
|
|
|
@project = @template.instance_variable_get("@project")
|
2014-02-04 02:48:33 -05:00
|
|
|
@options = options.dup
|
2012-07-23 19:45:08 -04:00
|
|
|
super options
|
|
|
|
end
|
|
|
|
|
2012-04-17 17:02:21 -04:00
|
|
|
def block_code(code, language)
|
2012-12-22 07:18:40 -05:00
|
|
|
# New lines are placed to fix an rendering issue
|
|
|
|
# with code wrapped inside <h1> tag for next case:
|
|
|
|
#
|
|
|
|
# # Title kinda h1
|
|
|
|
#
|
|
|
|
# ruby code here
|
|
|
|
#
|
2012-12-22 06:01:15 -05:00
|
|
|
<<-HTML
|
2012-12-22 07:18:40 -05:00
|
|
|
|
2014-01-27 06:12:58 -05:00
|
|
|
<div class="highlighted-data #{h.user_color_scheme_class}">
|
|
|
|
<div class="highlight">
|
2014-02-27 04:12:12 -05:00
|
|
|
<pre><code class="#{language}">#{h.send(:html_escape, code)}</code></pre>
|
2014-01-27 06:12:58 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-12-22 07:18:40 -05:00
|
|
|
|
2012-12-22 06:01:15 -05:00
|
|
|
HTML
|
2012-04-17 17:02:21 -04:00
|
|
|
end
|
2012-08-01 20:29:15 -04:00
|
|
|
|
2013-01-16 16:37:39 -05:00
|
|
|
def link(link, title, content)
|
|
|
|
h.link_to_gfm(content, link, title: title)
|
|
|
|
end
|
|
|
|
|
2014-02-04 02:48:33 -05:00
|
|
|
def header(text, level)
|
|
|
|
if @options[:no_header_anchors]
|
|
|
|
"<h#{level}>#{text}</h#{level}>"
|
|
|
|
else
|
|
|
|
id = ActionController::Base.helpers.strip_tags(h.gfm(text)).downcase() \
|
|
|
|
.gsub(/[^a-z0-9_-]/, '-').gsub(/-+/, '-').gsub(/^-/, '').gsub(/-$/, '')
|
|
|
|
"<h#{level} id=\"#{id}\">#{text}<a href=\"\##{id}\"></a></h#{level}>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-01 20:29:15 -04:00
|
|
|
def postprocess(full_document)
|
2014-05-23 06:58:34 -04:00
|
|
|
unless @template.instance_variable_get("@project_wiki") || @project.nil?
|
|
|
|
full_document = h.create_relative_links(full_document)
|
|
|
|
end
|
2012-08-01 20:29:15 -04:00
|
|
|
h.gfm(full_document)
|
|
|
|
end
|
2012-06-08 04:23:31 -04:00
|
|
|
end
|