kramdown icon indicating copy to clipboard operation
kramdown copied to clipboard

kramdown is a fast, pure Ruby Markdown superset converter, using a strict syntax definition and supporting several common extensions.

Results 39 kramdown issues
Sort by recently updated
recently updated
newest added

While working on a plugin for Bridgetown I realized that it was not possible to use some of the newer [Rouge Formatters](https://github.com/rouge-ruby/rouge#formatters) like `Rouge::Formatters::HTMLLineHighlighter.new(formatter, highlight_lines: [3, 5])` for at least...

kramdown seems to treat CDATA like normal text in XML (HTML) parts of a markdown input. ``` $ kramdown -o html ^D <![CDATA[ +-----------------------+ | Use XML, be Happy :-)...

enhancement

Hi everyone! Thanks for developing the lovely kramdown tech. :) I'm trying to include some kramdown within a `` element, because nesting it within a kramdown'd `` isn't sufficient: ```...

Hello. We have noticed that kramdown has hard time parsing some string. Example: ``` text = "___QWE ___qwe ___qwe ___qwe ___qwe ___QWE ___qwe ___qwe ___qwe ___qwe ___QWE ___qwe ___qwe ___qwe...

Hello folks. I worked on adding custom support for highlighting text with `either ::double colons:: or ==double equals==` which converts to `` tags, but thought I'd raise the issue here...

question

``` ruby irb(main):001:0> require 'kramdown' => true irb(main):002:0> Kramdown::Document.new('"[foo]"', entity_output: 'numeric').to_html => "“[foo]”\n" ``` However, when I try to escape the brackets because I want to make sure Kramdown doesn't...

bug
needs pull request

Hello. I don't speak Ruby, and I don't know how to run the tests on this. Use stink-eye heavily please. I wrote this patch to attempt to address #736 ,...

A lot changed since the last time `.rubocop.yml` in this repository was touched. Since there's no record of what version of Rubocop was used at the time, I decided to...

Fixes #719. PR #693 also incorporate this fix, but has gone stale.

bug

Checks whether element is a list, and if that list is nested within another list (i.e. the list's parent is a list item). In this case we should not add...