
Not always honoring <notextile> tags
Reported by August Lilleaas | May 10th, 2009 @ 07:10 PM | in 4.2.0
Here's a code sample.
require 'rubygems'
require 'redcloth'
puts RedCloth::VERSION
# => 4.1.9
s = %{<notextile><pre><code><span>Foo</span></code></pre></notextile>}
puts RedCloth.new(s).to_html
# => <pre><code><span>Foo</span></code></pre>
s << %{
Now with a newline.}
puts RedCloth.new(s).to_html
# => <pre><code><span>Foo</span></code></pre>
# => <p>Now with a newline.</p>
I would expect RedCloth to not escape the contents of the <pre><code> block, because of the <notextile> tags. That does not seem to be the case, though.
Comments and changes to this ticket
-
Jason Garber June 2nd, 2009 @ 11:04 PM
- State changed from new to resolved
It seems to have been a problem related to another ticket that was fixed. Works now!
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
RedCloth is a Ruby library for converting Textile into HTML