a8m / mark

A markdown processor written in Go. built for fun.
MIT License
203 stars 16 forks source link

mark parser doesn't conform to the Markdown specification #7

Closed xor-gate closed 5 years ago

xor-gate commented 5 years ago

The parsing/rendering is broken for e.g

`my_variable_one`

which renders to

<code>my<em>variable</em>one</code>

it should

<code>my_variable_one</code>

My suggestion is to put the project in archive mode as it is not maintained since 2017 and link to a compliant tool like https://github.com/russross/blackfriday-tool

Kind regards, Jerry

a8m commented 5 years ago

done. thanks