Use testcase tiddlers for html examples (#8376)

* Convert several html examples into testcase tiddlers

* Convert html table exmaple into testcase tiddler
This commit is contained in:
btheado
2024-09-10 06:48:14 -04:00
committed by GitHub
parent 19336dc437
commit feec6ef18f
6 changed files with 137 additions and 39 deletions

View File

@@ -0,0 +1,30 @@
created: 20240713164810184
description: Block mode for table cells
modified: 20240713164810184
tags: $:/tags/wiki-test-spec
title: TestCases/HTML/BlockModeInHTMLTable
type: text/vnd.tiddlywiki-multiple
title: Narrative
Unlike the table wiki syntax, the less convenient `<table>`, `<tr>`, `<td>` html tags can use a blank line
to get block mode punctuation regognised inside of table cells.
+
title: Output
<table>
<tr><td>
* list item one
* list item two
</td><td>
|nested|table|
</td></tr>
</table>
+
title: ExpectedResult
<p><table>
<tr><td><ul><li>list item one</li><li>list item two</li></ul></td><td><table><tbody><tr class="evenRow"><td>nested</td><td>table</td></tr></tbody></table></td></tr>
</table></p>