mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-05 16:51:36 -08:00
Use the new widget mechanism for stylesheet parsing and rendering
This commit is contained in:
parent
79e7dc4f18
commit
ce1fb300f8
1 changed files with 1 additions and 6 deletions
|
|
@ -34,12 +34,7 @@ StylesheetManager.prototype.addStylesheet = function(title) {
|
|||
// Record the stylesheet in the hashmap
|
||||
this.stylesheets[title] = true;
|
||||
// Parse the tiddler and render as plain text
|
||||
var parser = this.wiki.parseTiddler(title),
|
||||
renderTree = new $tw.WikiRenderTree(parser,{wiki: this.wiki, context: {tiddlerTitle: title}, document: $tw.document});
|
||||
renderTree.execute();
|
||||
var container = $tw.document.createElement("div");
|
||||
renderTree.renderInDom(container);
|
||||
var text = container.textContent;
|
||||
var text = this.wiki.new_renderTiddler("text/plain",title);
|
||||
// Create a style element and put it in the document
|
||||
var styleNode = document.createElement("style");
|
||||
styleNode.setAttribute("type","text/css");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue