mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
5599f9f933
Fixes #1037
35 lines
606 B
JavaScript
35 lines
606 B
JavaScript
/*\
|
|
title: $:/core/modules/parsers/htmlparser.js
|
|
type: application/javascript
|
|
module-type: parser
|
|
|
|
The HTML parser displays text as raw HTML
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var HtmlParser = function(type,text,options) {
|
|
var src;
|
|
if(options._canonical_uri) {
|
|
src = options._canonical_uri;
|
|
} else if(text) {
|
|
src = "data:text/html;charset=utf-8," + encodeURIComponent(text);
|
|
}
|
|
this.tree = [{
|
|
type: "element",
|
|
tag: "iframe",
|
|
attributes: {
|
|
src: {type: "string", value: src}
|
|
}
|
|
}];
|
|
};
|
|
|
|
exports["text/html"] = HtmlParser;
|
|
|
|
})();
|
|
|