markdown icon indicating copy to clipboard operation
markdown copied to clipboard

markdown parser and HTML renderer for Go

Results 33 markdown issues
Sort by recently updated
recently updated
newest added

The following code block (see raw) 1. listitem ```yaml kinds: - Deployment - Pod ``` ![image](https://user-images.githubusercontent.com/14068654/187195878-41358c44-a8c5-401f-ba00-892120c7f4fc.png) ## Rendered as: ``` listitem “`yaml kinds: Deployment Pod “` ``` but not code...

Here is the problem: autoresolving of referenced links works well, however, for me, it's strictly important to get reference link definitions unchanged. E.g. this code: ``` markdown Hello [world][wiki-world] [wiki-world]:...

Same as: https://github.com/gomarkdown/markdown/issues/242, the difference is that the blockquote is inside list. For example: ``` 1. list > blockquote ``` Returns: ``` list > blockquote ``` Expected: ``` list blockquote...

https://babelmark.github.io/?text=++%3Cdiv+style%3D%22text-align%3Acenter%22%3E%0A++++%3Cimg+src%3D%22https%3A%2F%2Fhatrabbits.com%2Fwp-content%2Fuploads%2F2017%2F01%2Frandom-word-1.jpg%22%3E%0A++%3C%2Fdiv%3E For example if you have in Markdown: ``` ``` It is parsed as: ``` "" ``` ## Desired behaviour: ![image](https://user-images.githubusercontent.com/14068654/169836095-690cdaa3-d423-41b4-a982-b1993f5e7591.png) ``` ```

Bear with me if I have misunderstood usage. I feel like a common usage is having images that look like this: `![](image.png)` which references current directory. Now if I want...

The following piece of Markdown does not render correctly: Hilariously it doesn't seem to render correctly with Github's own Markdown support in comments either 😂 [foo.md](https://github.com/gomarkdown/markdown/files/7358304/foo.md)

```md ## foo {: data-line="1"} ``` should generate: ```html foo ``` [babelmark results](https://babelmark.github.io/?text=%23%23+foo%0A%7B%3A+data-line%3D%221%22%7D) This is a kramdown extension. Probably should be an extension.

Hello guys! I found a bug with CodeBlock rendering. I want to add my own Class to the CodeBlock node so I add it like this: ``` node.Attribute = &ast.Attribute{...

bug

I have some HTML embeded in JSON format e.g. text: "This is a how you make a paragraph new paragraph" I need to escape the HTML encoding because the HTML...

``` > Blockquotes can also be nested... >> ...by using additional greater-than signs right next to each other... > > > ...or with spaces between arrows. ``` results in: ```...