1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 15:23:15 +00:00

Remove tab mangling from JavaScript parser

This commit is contained in:
Jeremy Ruston 2012-05-09 13:48:45 +01:00
parent 998bd07ef9
commit bb2d65861f

View File

@ -21,8 +21,6 @@ var JavaScriptParser = function(options) {
// Parse a string of JavaScript code and return the parse tree as a wikitext parse tree
JavaScriptParser.prototype.parse = function(type,code) {
// Simplistically replace tabs with spaces. Browsers will happily render tabs but most default to 8 character tab stops
code = code.replace(/\t/mg," ");
// Try to parse the code
var parseTree;
try {