mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-15 14:24:51 +00:00
42 lines
1.0 KiB
JavaScript
42 lines
1.0 KiB
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/text-slicer/modules/slicers/paragraph.js
|
|
type: application/javascript
|
|
module-type: slicer
|
|
|
|
Handle slicing paragraph nodes
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.processParagraphNode = function(domNode,tagName) {
|
|
var text = $tw.utils.htmlEncode(domNode.textContent);
|
|
if(domNode.nodeType === 1 && tagName === "p") {
|
|
if(!this.isBlank(text)) {
|
|
var parentTitle = this.parentStack[this.parentStack.length - 1].title,
|
|
tags = [],
|
|
title = this.makeUniqueTitle("paragraph",text);
|
|
if(domNode.className && domNode.className && domNode.className.trim() !== "") {
|
|
tags = tags.concat(domNode.className.split(" "));
|
|
}
|
|
this.addToList(parentTitle,this.addTiddler({
|
|
"toc-type": "paragraph",
|
|
title: title,
|
|
text: "",
|
|
tags: tags
|
|
}));
|
|
this.currentTiddler = title;
|
|
this.containerStack.push(title);
|
|
this.processNodeList(domNode.childNodes);
|
|
this.containerStack.pop();
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
|
|
})();
|