mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 11:29:58 +00:00
35 lines
669 B
JavaScript
35 lines
669 B
JavaScript
|
/*\
|
||
|
title: js/BitmapParser.js
|
||
|
|
||
|
Compiles bitmap images into JavaScript functions that render them in HTML
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true */
|
||
|
"use strict";
|
||
|
|
||
|
// The parse tree is degenerate
|
||
|
var BitmapParseTree = function() {
|
||
|
this.dependencies = [];
|
||
|
};
|
||
|
|
||
|
BitmapParseTree.prototype.compile = function(type) {
|
||
|
if(type === "text/html") {
|
||
|
return "(function (tiddler,store,utils) {return '<img src=\"data:' + tiddler.fields.type + ';base64,' + tiddler.fields.text + '\">';})";
|
||
|
} else {
|
||
|
return null;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
var BitmapParser = function() {
|
||
|
};
|
||
|
|
||
|
BitmapParser.prototype.parse = function() {
|
||
|
return new BitmapParseTree();
|
||
|
};
|
||
|
|
||
|
exports.BitmapParser = BitmapParser;
|
||
|
|
||
|
})();
|