mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
25 lines
511 B
JavaScript
25 lines
511 B
JavaScript
/*\
|
|
title: $:/core/modules/parsers/plaintextparser.js
|
|
type: application/javascript
|
|
module-type: parser
|
|
|
|
Renders plain text tiddlers
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
var PlainTextParser = function(options) {
|
|
this.wiki = options.wiki;
|
|
};
|
|
|
|
PlainTextParser.prototype.parse = function(type,text) {
|
|
return new $tw.Renderer([$tw.Tree.Element("pre",{},[$tw.Tree.Text(text)])],new $tw.Dependencies());
|
|
};
|
|
|
|
exports["text/plain"] = PlainTextParser;
|
|
|
|
})(); |