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....
The following bit from https://github.com/kusma/rocket/blob/master/README.md misrenders:
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....