I often edit my tiddlers in VIM rather than the browser form editor. An issue I run into though is when entering lists such as below:
A paragraph with a bunch of text. That eventually gets hard
wrapped at some column. A paragraph with a bunch of text.
* A list item with a bunch of text that eventually gets wrapped at a
column and then continued.
* A list item with a bunch of text that eventually gets wrapped at a
column and then continued.
* A list item with a bunch of text that eventually gets wrapped at a
column and then continued.
A second paragraph with a bunch of text. That eventually gets hard
wrapped at some column. A paragraph with a bunch of text.
Expected/desired HTML output is something like:
<p>
A paragraph with a bunch of text. That eventually gets hard wrapped at some column. A paragraph with a bunch of text.
</p>
<ul>
<li>A list item with a bunch of text that eventually gets wrapped at a column and then continued.</li>
<li>A list item with a bunch of text that eventually gets wrapped at a column and then continued.</li>
<li>A list item with a bunch of text that eventually gets wrapped at a column and then continued.</li>
</ul>
<p>
A second paragraph with a bunch of text. That eventually gets hard wrapped at some column. A paragraph with a bunch of text.
</p>
But what I see (edited for clarity) with the TiddlyWiki WikiText is something like:
<ul>
<li>A list item with a bunch of text that eventually gets wrapped at a</li>
</ul>
<p>column and then continued</p>
When rendering with markdown or asciidoc, the above markup works as expected.
When rendering with TiddlyWiki’s WikiText the list starts a new paragraph whenever a newline is encountered after the *
character. Is there a way to force WikiText to include the continued list-item text as the same list-item?
(As an aside, I’m going to look into switching to soft-wrapping approaches in vim to see if that is an alternative viable approach).