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
renderer = Redcarpet::Render::HTML.new md = Redcarpet::Markdown.new(renderer, {highlight: true}) md.render("==url_param\===")
produces:
<p><mark>url_param</mark>=</p>
I'm expecting it to output:
<p><mark>url_param=</mark></p>
Unforunately my C skills are very limited, so I have no idea how to fix it :(
The text was updated successfully, but these errors were encountered:
Hello @jomo,
Sorry for the late reply and thanks for reporting! It looks like all emphasis have the problem ; I will try to have a look:
>> require 'redcarpet' => true >> parser = Redcarpet::Markdown.new(Redcarpet::Render::HTML); >> parser.render("**foo\***") => "<p><strong>foo</strong>*</p>\n"
Sorry, something went wrong.
Perhaps related to #214?
This has been addressed in #380. By the way, there is gotcha with double quotes, you should write:
"==url_param\\===" # or '==url_param\==='
So my example is wrong as well, it should be '**foo\***'. Thanks for reporting anyway! :-)
'**foo\***'
No branches or pull requests
produces:
I'm expecting it to output:
Unforunately my C skills are very limited, so I have no idea how to fix it :(
The text was updated successfully, but these errors were encountered: