Loqseq lacks proper documentation for many of its features, but I think the most glaring is the presentation mode.
By trial and error here are some of my surprising finds:
- you can change the background color of a slide by adding the property
data-background-color
to the slide, for exampledata-background-color:: mistyrose
. - Macros are rendered in the slides the same way as in blocks.
- You CAN create lists and nested list as long they are inside a single block.
- You can render html code in slides as long as they are closed, i.e.
<span></span>
works but<br>
does not. However,<br />
does. Not everything works, though, for example<hr />
renders inside the block but not in the slide. - If you fold a block, the slide will ignore the existence of its children.
And so on and so forth.
Is there any kind of documentation on this? Or the very least some notes made during development?