mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
25 lines
523 B
Plaintext
25 lines
523 B
Plaintext
|
title: $:/plugins/tiddlywiki/text-slicer/slicer-rules/html-plain-paragraphs.json
|
||
|
name: html-plain-paragraphs
|
||
|
caption: Plain Paragraphs (HTML)
|
||
|
description: One tiddler per paragraph, without formatting (HTML)
|
||
|
type: application/json
|
||
|
tags: $:/tags/text-slicer/slicer-rules
|
||
|
|
||
|
[
|
||
|
{
|
||
|
"selector": "address,blockquote,center,dd,dt,h1,h2,h3,h4,h5,h6,li,p",
|
||
|
"actions": {
|
||
|
"startNewChunk": {
|
||
|
"toc-type": "paragraph"
|
||
|
},
|
||
|
"dontRenderTag": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"selector": "*",
|
||
|
"actions": {
|
||
|
"dontRenderTag": true
|
||
|
}
|
||
|
}
|
||
|
]
|