I have tried single <p> as well as <br> but nothing seems to work. How do I add a carriage return/linefeed character so the bulleted list is correctly rendered?
* Object type: <$view field="object_type" />
* Date start: <$view field="date_start" />
* Date end: <$view field="date_end" />{{CS22}}
This does not work, as shown in the image
Not if html or a widget proceeds the above you may need a blank line above
Elaborating on Eric’s answer here, for this use case you should not try to insert html tags like <p> or <br> for linebreaks but only simple wikitext. I suggest you try this:
By default, filter syntax applies “dominant append” handling to prevent duplicates from appearing in the resulting list of items. Thus, if a filter were defined as:
Foo Bar Baz Foo Gronk Snork Baz Foo Snerkle
the list that actually results would be:
Bar Gronk Snork Baz Foo Snerkle
i.e., only the last occurence of each repeated item – “Foo” and “Baz” – would be retained in the list.
Thus, in @tw-FRed’s response, only the last instance of the [charcode[10]] filter run will be retained in the final result. To bypass this “dominant append” handling and allow multiple instances of the same value to be retained, you need to precede each duplicated “line break” filter run with a “=”, like this: