atom / markdown-preview

📝 Markdown preview in Atom
MIT License
1.23k stars 358 forks source link

wrapped bullet lists misrender #372

Open kusma opened 8 years ago

kusma commented 8 years ago

The following bit from https://github.com/kusma/rocket/blob/master/README.md misrenders:

Interpolation modes
-------------------
Each key frame has an interpolation mode associated with it, and that
interpolation mode is valid until the next key frame is reached. The different
interpolation modes are the following:

* Step   : This is the simplest mode, and always returns the key's value.
* Linear : This does a linear interpolation between the current and the next
           key's values.
* Smooth : This interpolates in a smooth fashion, the exact function is what
           is usually called "smoothstep". Do not confuse this mode with
           splines; this only interpolates smoothly between two different
           values, it does not try to calculate tangents or any such things.
* Ramp   : This is similar to "Linear", but additionally applies an
           exponentiation of the interpolation factor.

The second line after "* Linear : [...]", as well as the similar sections after "* Smooth : [...]" and "* Ramp :" renders as quotes in markdown-preview. But both GitHub as well as markdownlivepreview.com, dillinger.io and http://tmpvar.com/markdown.html renders it as simply wrapped lines in a bullet-list. In fact, I can't seem to find any other markdown-powered application that interprets this markdown as quote-blocks....

kusma commented 8 years ago

image

Here's a screenshot of the rendered result

anderoonies commented 8 years ago

this looks like a result of this rule in marked, which is what roaster uses for conversion.