We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, is there any way to only parse certain tags, for example if I want to only parse bc..:
bc..
Given an input string: text = "h5. My Header\r\n\r\nbc.. Hello world\r\n\r\np. Bye world"
text = "h5. My Header\r\n\r\nbc.. Hello world\r\n\r\np. Bye world"
I want to get an output like: RedCloth.new(text).to_html #=> "h5. My Header\r\n\r\n<pre><code>Hello world</code></pre>\r\n\r\nBye world"
RedCloth.new(text).to_html #=> "h5. My Header\r\n\r\n<pre><code>Hello world</code></pre>\r\n\r\nBye world"
The text was updated successfully, but these errors were encountered:
Nor really
Sorry, something went wrong.
p>The sun is reportedly hot,1 just like freshly baked potatoes.1 Ice is cold.2
No branches or pull requests
Hi, is there any way to only parse certain tags, for example if I want to only parse
bc..
:Given an input string:
text = "h5. My Header\r\n\r\nbc.. Hello world\r\n\r\np. Bye world"
I want to get an output like:
RedCloth.new(text).to_html #=> "h5. My Header\r\n\r\n<pre><code>Hello world</code></pre>\r\n\r\nBye world"
The text was updated successfully, but these errors were encountered: