kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Remove tab mangling from JavaScript parser
rodzic
998bd07ef9
commit
bb2d65861f
|
@ -21,8 +21,6 @@ var JavaScriptParser = function(options) {
|
||||||
|
|
||||||
// Parse a string of JavaScript code and return the parse tree as a wikitext parse tree
|
// Parse a string of JavaScript code and return the parse tree as a wikitext parse tree
|
||||||
JavaScriptParser.prototype.parse = function(type,code) {
|
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
|
// Try to parse the code
|
||||||
var parseTree;
|
var parseTree;
|
||||||
try {
|
try {
|
||||||
|
|
Ładowanie…
Reference in New Issue