From d7ea22b6f2b1a4c6235044f380cf1c9cd0d56349 Mon Sep 17 00:00:00 2001 From: phasmal Date: Thu, 3 Jan 2013 13:14:51 +1100 Subject: [PATCH] removed some tab chars --- plugins/markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/markdown.js b/plugins/markdown.js index 702318bd..a6b92d19 100644 --- a/plugins/markdown.js +++ b/plugins/markdown.js @@ -23,7 +23,7 @@ function process(doclet) { } if (typeof doclet[tag] === "string" && - (tag != 'see' || + (tag != 'see' || // treat '@see' specially, since we only want to process @see text that contains links (tag == 'see' && doclet[tag].indexOf('[') != -1))) { doclet[tag] = parse(doclet[tag]);