Ruby 2.3.0
Rails 4.2.5
Rails Console output:
2.3.0 :005 > html_str = "<p><strong>Username</strong> : %{user_name}</p>"
=> "<p><strong>Username</strong> : %{user_name}</p>"
2.3.0 :006 > md = ReverseMarkdown.convert(html_str)
=> " **Username** : %{user\\_name}\n\n"
2.3.0 :007 > puts md
**Username** : %{user\_name}
=> nil
As can be seen when my HTML string contains words separated by underscore(s), the underscore(s) gets escaped which is correct. But is there any way we can hide those in the output string? I have a use-case wherein I want to convert the HTML string to its Markdown version and render the markdown version as it is.