1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-17 17:59:45 +00:00
TiddlyWiki5/plugins/tiddlywiki/text-slicer/modules/slicers/paragraph.js

39 lines
871 B
JavaScript
Raw Normal View History

2015-09-15 12:37:12 +00:00
/*\
title: $:/plugins/tiddlywiki/text-slicer/modules/slicers/paragraph.js
type: application/javascript
module-type: slicer
Handle slicing paragraph nodes
2015-09-15 12:37:12 +00:00
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.processParagraphNode = function(domNode,tagName) {
var text = $tw.utils.htmlEncode(domNode.textContent);
if(tagName === "p") {
if(!this.isBlank(text)) {
var parentTitle = this.parentStack[this.parentStack.length - 1].title,
tags = [],
title = this.makeUniqueTitle("paragraph",text);
2015-09-15 12:37:12 +00:00
if(domNode.className.trim() !== "") {
tags = tags.concat(domNode.className.split(" "));
}
this.addToList(parentTitle,this.addTiddler({
"toc-type": "paragraph",
title: title,
2015-09-15 12:37:12 +00:00
text: text,
tags: tags
}));
this.currentTiddler = title;
2015-09-15 12:37:12 +00:00
return true;
}
}
return false;
};
})();