TiddlyWiki5/core/modules/parsers/textparser.js
2026-02-19 12:45:27 +00:00

28 lines
776 B
JavaScript

/*\
title: $:/core/modules/parsers/textparser.js
type: application/javascript
module-type: parser
\*/
"use strict";
var TextParser = function(type,text,options) {
this.tree = [{
type: "genesis",
attributes: {
$type: {name: "$type", type: "string", value: "$codeblock"},
code: {name: "code", type: "string", value: text},
language: {name: "language", type: "string", value: type},
$remappable: {name: "$remappable", type:"string", value: "no"}
}
}];
this.source = text;
this.type = 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;