mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
c9c1b0fbb4
It’s an embarrassing hangover from a refactoring of the parsing mechanism last year.
34 lines
775 B
JavaScript
34 lines
775 B
JavaScript
/*\
|
|
title: $:/core/modules/parsers/textparser.js
|
|
type: application/javascript
|
|
module-type: parser
|
|
|
|
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: "codeblock",
|
|
attributes: {
|
|
code: {type: "string", value: text},
|
|
language: {type: "string", value: type}
|
|
}
|
|
}];
|
|
};
|
|
|
|
exports["text/plain"] = TextParser;
|
|
exports["text/x-tiddlywiki"] = TextParser;
|
|
exports["application/javascript"] = TextParser;
|
|
exports["application/json"] = TextParser;
|
|
exports["text/css"] = TextParser;
|
|
exports["application/x-tiddler-dictionary"] = TextParser;
|
|
|
|
})();
|
|
|