adamzap / landslide

Generate HTML5 slideshows from markdown, ReST, or textile
Apache License 2.0
2.09k stars 369 forks source link

monospace block and bullets on the same slide #239

Open mpenning opened 6 months ago

mpenning commented 6 months ago

I'm trying to render a slide like this, but I can't figure out how to get both monospace text and bullets on the same slide... is there something I could do to make this render correctly?

---

# Slide title

- bullet 1
- bullet 2
  - bullet 3

    monospace line 1
    monospace line 2
    monospace line 3

If you try to render this slide, the monospace text does not show up as monospace.

adamzap commented 6 months ago

Yes, this is unfortunate. My first thought is that you could put an HTML comment between them as a workaround:

---

# Slide title

- bullet 1
- bullet 2
  - bullet 3

<!-- -->

    monospace line 1
    monospace line 2
    monospace line 3