From 6267bdd6ee7eb651ac5ac5e56cc315ab6127ab30 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 5 May 2012 11:19:10 +0100 Subject: [PATCH] Added `text/x-tiddlywiki-html` support to TiddlyTextParser --- rabbithole/core/modules/parsers/tiddlytextparser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rabbithole/core/modules/parsers/tiddlytextparser.js b/rabbithole/core/modules/parsers/tiddlytextparser.js index c2fa8cd48..950c81ea8 100644 --- a/rabbithole/core/modules/parsers/tiddlytextparser.js +++ b/rabbithole/core/modules/parsers/tiddlytextparser.js @@ -53,5 +53,6 @@ TiddlyTextParser.prototype.parse = function(type,text) { }; exports["text/x-tiddlywiki-css"] = TiddlyTextParser; +exports["text/x-tiddlywiki-html"] = TiddlyTextParser; })();