mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-05-03 07:54:10 +00:00

* remove blks first try * dprint.json seems to be OK, some forgotten functions * add some more space-after-keyword settings * server remove blks * add **/files to dprint exclude * dprint.js fixes a typo * add boot.js and bootprefix.js to dprint exclude * dprint change dprint.json * add dprint fmt as script * remove jslint comments * fix whitespace * fix whitespace * remove function-wrapper from geospatial plugin * fix whitespace * add function wrapper to dyannotate-startup * remove dpring.json
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
/*\
|
|
title: $:/core/modules/parsers/imageparser.js
|
|
type: application/javascript
|
|
module-type: parser
|
|
|
|
The image parser parses an image into an embeddable HTML element
|
|
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
var ImageParser = function(type,text,options) {
|
|
var element = {
|
|
type: "element",
|
|
tag: "img",
|
|
attributes: {}
|
|
};
|
|
if(options._canonical_uri) {
|
|
element.attributes.src = {type: "string", value: options._canonical_uri};
|
|
} else if(text) {
|
|
if(type === "image/svg+xml" || type === ".svg") {
|
|
element.attributes.src = {type: "string", value: "data:image/svg+xml," + encodeURIComponent(text)};
|
|
} else {
|
|
element.attributes.src = {type: "string", value: "data:" + type + ";base64," + text};
|
|
}
|
|
}
|
|
this.tree = [element];
|
|
this.source = text;
|
|
this.type = type;
|
|
};
|
|
|
|
exports["image/svg+xml"] = ImageParser;
|
|
exports["image/jpg"] = ImageParser;
|
|
exports["image/jpeg"] = ImageParser;
|
|
exports["image/png"] = ImageParser;
|
|
exports["image/gif"] = ImageParser;
|
|
exports["image/webp"] = ImageParser;
|
|
exports["image/heic"] = ImageParser;
|
|
exports["image/heif"] = ImageParser;
|
|
exports["image/avif"] = ImageParser;
|
|
exports["image/x-icon"] = ImageParser;
|
|
exports["image/vnd.microsoft.icon"] = ImageParser;
|