mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
74def9e080
It was a bit of a hack, and made it harder to customise PDF presentation
34 lines
657 B
JavaScript
34 lines
657 B
JavaScript
/*\
|
|
title: $:/core/modules/parsers/pdfparser.js
|
|
type: application/javascript
|
|
module-type: parser
|
|
|
|
The PDF parser embeds a PDF viewer
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var ImageParser = function(type,text,options) {
|
|
var element = {
|
|
type: "element",
|
|
tag: "embed",
|
|
attributes: {}
|
|
},
|
|
src;
|
|
if(options._canonical_uri) {
|
|
element.attributes.src = {type: "string", value: options._canonical_uri};
|
|
} else if(text) {
|
|
element.attributes.src = {type: "string", value: "data:application/pdf;base64," + text};
|
|
}
|
|
this.tree = [element];
|
|
};
|
|
|
|
exports["application/pdf"] = ImageParser;
|
|
|
|
})();
|
|
|