mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
guides generation: apparently this workaround for RedCloth is not needed anymore
This commit is contained in:
parent
e06db7276c
commit
e746980507
2 changed files with 26 additions and 47 deletions
|
@ -199,50 +199,10 @@ module RailsGuides
|
|||
end
|
||||
|
||||
def textile(body, lite_mode=false)
|
||||
# If the issue with notextile is fixed just remove the wrapper.
|
||||
with_workaround_for_notextile(body) do |body|
|
||||
t = RedCloth.new(body)
|
||||
t.hard_breaks = false
|
||||
t.lite_mode = lite_mode
|
||||
t.to_html(:notestuff, :plusplus, :code)
|
||||
end
|
||||
end
|
||||
|
||||
# For some reason the notextile tag does not always turn off textile. See
|
||||
# LH ticket of the security guide (#7). As a temporary workaround we deal
|
||||
# with code blocks by hand.
|
||||
def with_workaround_for_notextile(body)
|
||||
code_blocks = []
|
||||
|
||||
body.gsub!(%r{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\1>}m) do |m|
|
||||
brush = case $1
|
||||
when 'ruby', 'sql', 'plain'
|
||||
$1
|
||||
when 'erb'
|
||||
'ruby; html-script: true'
|
||||
when 'html'
|
||||
'xml' # html is understood, but there are .xml rules in the CSS
|
||||
else
|
||||
'plain'
|
||||
end
|
||||
|
||||
code_blocks.push(<<HTML)
|
||||
<notextile>
|
||||
<div class="code_container">
|
||||
<pre class="brush: #{brush}; gutter: false; toolbar: false">
|
||||
#{ERB::Util.h($2).strip}
|
||||
</pre>
|
||||
</div>
|
||||
</notextile>
|
||||
HTML
|
||||
"\ndirty_workaround_for_notextile_#{code_blocks.size - 1}\n"
|
||||
end
|
||||
|
||||
body = yield body
|
||||
|
||||
body.gsub(%r{<p>dirty_workaround_for_notextile_(\d+)</p>}) do |_|
|
||||
code_blocks[$1.to_i]
|
||||
end
|
||||
t = RedCloth.new(body)
|
||||
t.hard_breaks = false
|
||||
t.lite_mode = lite_mode
|
||||
t.to_html(:notestuff, :plusplus, :code)
|
||||
end
|
||||
|
||||
def warn_about_broken_links(html)
|
||||
|
|
|
@ -33,11 +33,30 @@ module RailsGuides
|
|||
body.gsub!('<plus>', '+')
|
||||
end
|
||||
|
||||
def brush_for(code_type)
|
||||
case code_type
|
||||
when 'ruby', 'sql', 'plain'
|
||||
code_type
|
||||
when 'erb'
|
||||
'ruby; html-script: true'
|
||||
when 'html'
|
||||
'xml' # html is understood, but there are .xml rules in the CSS
|
||||
else
|
||||
'plain'
|
||||
end
|
||||
end
|
||||
|
||||
def code(body)
|
||||
body.gsub!(%r{<(yaml|shell|ruby|erb|html|sql|plain)>(.*?)</\1>}m) do |m|
|
||||
es = ERB::Util.h($2)
|
||||
css_class = $1.in?(['erb', 'shell']) ? 'html' : $1
|
||||
%{<notextile><div class="code_container"><code class="#{css_class}">#{es}</code></div></notextile>}
|
||||
<<HTML
|
||||
<notextile>
|
||||
<div class="code_container">
|
||||
<pre class="brush: #{brush_for($1)}; gutter: false; toolbar: false">
|
||||
#{ERB::Util.h($2).strip}
|
||||
</pre>
|
||||
</div>
|
||||
</notextile>
|
||||
HTML
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue