1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-09 02:08:05 +00:00

Let chained > blockquotes generate valid HTML (#4332)

* Replace "p" with "div" in itemTag

'>> text' will now be valid html.

* Make the new div's behave like p's
This commit is contained in:
Nils-Hero Lindemann
2020-04-07 21:39:13 +02:00
committed by GitHub
parent 338cffd8c7
commit 322c37d693
2 changed files with 6 additions and 1 deletions

View File

@@ -60,7 +60,7 @@ var listTypes = {
"#": {listTag: "ol", itemTag: "li"},
";": {listTag: "dl", itemTag: "dt"},
":": {listTag: "dl", itemTag: "dd"},
">": {listTag: "blockquote", itemTag: "p"}
">": {listTag: "blockquote", itemTag: "div"}
};
/*