1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-25 19:16:49 +00:00
TiddlyWiki5/core/modules/parsers/textparser.js
Jeremy Ruston d6e531e87c Extend new parser mechanism to determine parser based on content type
And add an image parser and a plain text parser
2012-12-27 17:08:29 +00:00

32 lines
596 B
JavaScript

/*\
title: $:/core/modules/parsers/textparser.js
type: application/javascript
module-type: newparser
The plain text parser processes blocks of source text into a degenerate parse tree consisting of a single text node
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var TextParser = function(type,text,options) {
this.tree = [{
type: "element",
tag: "pre",
children: [{
type: "text",
text: text
}]
}];
};
exports["text/plain"] = TextParser;
exports["text/html"] = TextParser;
exports["application/javascript"] = TextParser;
})();