mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-02-24 08:53:19 +01:00
In html content, marked allow `Inline-Level Grammar` but not `Block-Level Grammar`, so when I write following: ``` note: * a * b * c ``` it become: ```html <p><em> a </em> b</p> <ul> <li>c</li> </ul> ``` unbelievable!