Is there a plugin that allows TW markup in between HTML tags?

I have noticed when I try to use tables and bulleted lists in between HTML tags it does work.
When I try something like this:

<div class='className'>
|table-cell|table-cell|
*list-item
*list-item
*list-item
</div>

Aside from the

tags, the output is exactly what it appears.
I even tried something like this:

@@.className
|table-cell|table-cell|
*list-item
*list-item
*list-item
@@

This is bothering me because it would work in Classic.

@RedAsset I think this will annoy you at the same time it solves the problem.

<div class='className'>

|table-cell|table-cell|
*list-item
*list-item
*list-item
</div>

When using html in wiki text you need to place a blank line after it so the parser switches to wiki text rendering, otherwise it is placed inside a paragraph with the html and things go sour. You also need to do this with say <hr> and any tag, including inside a details tag.

<details><summary>title</summary>

! wikitext
</details>

When you have problems like this use tiddlywiki.com where the “internals” plugin is already installed. You then can edit the tiddler and preview the output or the generated HTML to see how it is breaking.

Keep in mind this is only an issue when mixing HTML and wikitext

I personally abandoned using wikitext tables which I always had difficulty with and use full html tables now - sometimes with rows and/or columns constructed inside list widgets.

Please mark as solved if I have in fact done so.

1 Like