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:
committed by
GitHub
parent
338cffd8c7
commit
322c37d693
@@ -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"}
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user