This is quoted material – I expect the spacing to be retained. I can make it look normal by using a single > and then putting a line break <br/> between each entree. But this is really awkward to type and read in the raw text:
> ik belde<br/>jij belde <br/> hij belde<br/> zij (she) belde
How can I use quoted texts easily and have them render sanely?
The screenshot shows, how the created HTML output looks like. You can see, that every DIV inside the BLOCKQUOTE element got a class named: mb, which can be used to style the element.
Before posting I reviewed the docs at Tiddlywiki dot com on CSS and formatting. There was no mention that classes could be added to individual elements like >. Just the triple <<<
I did try
""".myclass
And found it didn’t work. Maybe I’ll have to test that again.
In case you are interested in options: I found two variants to achieve the same result. The first is simple, the second might be semantically interesting for your example that reminds me of a list.
<<<
"""
ik belde
jij belde
hij belde
zij (she) belde
"""
<<<
---
<<<.nolist
* ik belde
* jij belde
* hij belde
* zij (she) belde
<<<
<style>.nolist ul { list-style:none; padding: 0; }</style>