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 41 kramdown issues
Sort by recently updated
recently updated
newest added

Some HTML entities, such as `nsubE`, are represented as multiple unicode characters (in this case `U+2AC5` `U+0338`.) This is particularly common in math symbols using the slash to strike through...

Edit: TL, DR? [Patch in PRs](https://github.com/gettalong/kramdown/pull/738). ---- Hello. This was reported in 2017, and it seems that a misunderstanding led to it not being fixed. I attempted to write `⅓`...

I want to convert HTML to plain text within a Kramdown plugin I'm making and I'm unable to get HTML entities decoded no matter what I do. Here's one of...

enhancement
needs pull request

doc-backlink, doc-endnote, doc-endnotes, and doc-noteref should be removed and instead rely on native semantic elements like `, , and `. --- If you run the ARIA validator extension in Chrome...

``` ::: summary part goes here details part goes here ::: ``` This would create \ and \ elements. This appears to be *extraordinarily common* in Markdown, but everyone just...

PR #646 refers. According to the Digital Publishing WAI-ARIA Module 1.0 [documentation](https://www.w3.org/TR/dpub-aria-1.0/#doc-noteref), `role="doc-noteref"` should be applied to a superclass of type `link` (i.e. the `` in the footnote ref) rather...

Hi, Somehow, Bbb (or mathbb) with nested subscripts of symbols seem to show strange behavior: 1. $E_{\pi_\pi}$, $E_{a_\pi}$, $E_{\pi_a}$ ---> all work fine 2. $\Bbb{E}_{\pi_\pi}$ ---> does not work 3....

Input: ``` markdown *[foo bar]: baz hello foo bar babble. hello foo bar babble. ``` Output: ``` html hello foo bar babble. hello foo bar babble. ``` This is bad...

When using the 'parse_block_html' option, kramdown converts `` blocks to invalid HTML5: ```sh echo "\ntext\n\ntext\n" | kramdown --parse_block_html ``` produces: ```html text text ``` The kramdown documentation for [HTML blocks](https://kramdown.gettalong.org/syntax.html#html-blocks)...