reverse_markdown icon indicating copy to clipboard operation
reverse_markdown copied to clipboard

Ruby gem to convert html into markdown

Results 20 reverse_markdown issues
Sort by recently updated
recently updated
newest added

This is to avoid deprecation warnings with the forthcoming change in Ruby 3.4 where modifying a string literal will cause a deprecation warning by default. https://github.com/ruby/ruby/commit/12be40ae6be78ac41e8e3f3c313cc6f63e7fa6c4 Essentially, I'm just marking...

I have an issue when parsing text after a list. ``` item followed with a text text after the list ``` This HTML is parsed as: ``` - item followed...

Hi, I was recently working with slack integration and had to convert HTML into Slack Flavored Markdown, which is a bit different than GitHub Flavored. For the urgent need, I...

```ruby ReverseMarkdown.convert("helloworld") ``` => ``` **hello world** ``` Expected: ``` **hello** **world** ```

Prism which is a common code highlighting library uses the `language-` class structure. It seems like a good idea to support that too. https://prismjs.com/#examples

I need to process footnotes and came up with this extension, if you think it could be a generic way to process footnotes, I'll be happy to open a PR....

It markdown will return the `\n`, however, not all markdown renders will understand `\n`. So, is it possible to change `\n` by something else? Is that a config for this?

I may work on a patch when I have the time, but I'll leave this here for discussion :) I'm converting a large site with user-edited HTML content through a...