mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
103a9a4d7f
Note that the format is now slightly different; see js/Dependencies.js for details
34 lines
828 B
JavaScript
34 lines
828 B
JavaScript
/*\
|
|
title: js/ImageParser.js
|
|
|
|
Compiles images into JavaScript functions that render them in HTML
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true */
|
|
"use strict";
|
|
|
|
var WikiTextParseTree = require("./WikiTextParseTree.js").WikiTextParseTree,
|
|
Renderer = require("./Renderer.js").Renderer,
|
|
Dependencies = require("./Dependencies.js").Dependencies,
|
|
utils = require("./Utils.js");
|
|
|
|
var ImageParser = function(options) {
|
|
this.store = options.store;
|
|
};
|
|
|
|
ImageParser.prototype.parse = function(type,text) {
|
|
var src;
|
|
if(type === "image/svg+xml") {
|
|
src = "data:" + type + "," + encodeURIComponent(text);
|
|
} else {
|
|
src = "data:" + type + ";base64," + text;
|
|
}
|
|
return new WikiTextParseTree([Renderer.ElementNode("img",{src: src})],new Dependencies(),this.store);
|
|
};
|
|
|
|
exports.ImageParser = ImageParser;
|
|
|
|
})();
|