mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 03:19:56 +00:00
30 lines
562 B
JavaScript
30 lines
562 B
JavaScript
|
/*\
|
||
|
title: $:/core/modules/parsers/binaryparser.js
|
||
|
type: application/javascript
|
||
|
module-type: parser
|
||
|
|
||
|
The video parser parses a video tiddler into an embeddable HTML element
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
var BINARY_WARNING_MESSAGE = "$:/core/ui/BinaryWarning";
|
||
|
|
||
|
var BinaryParser = function(type,text,options) {
|
||
|
this.tree = [{
|
||
|
type: "transclude",
|
||
|
attributes: {
|
||
|
tiddler: {type: "string", value: BINARY_WARNING_MESSAGE}
|
||
|
}
|
||
|
}];
|
||
|
};
|
||
|
|
||
|
exports["application/octet-stream"] = BinaryParser;
|
||
|
|
||
|
})();
|
||
|
|