remove NO_EXPAND_TABS options
Russ Ross russ@dixie.edu
Fri, 01 Jul 2011 09:57:11 -0600
1 files changed,
1 insertions(+),
6 deletions(-)
jump to
M
markdown.go
→
markdown.go
@@ -33,7 +33,6 @@ EXTENSION_STRIKETHROUGH
EXTENSION_LAX_HTML_BLOCKS EXTENSION_SPACE_HEADERS EXTENSION_HARD_LINE_BREAK - EXTENSION_NO_EXPAND_TABS EXTENSION_TAB_SIZE_EIGHT )@@ -256,11 +255,7 @@ }
// add the line body if present if end > beg { - if parser.flags&EXTENSION_NO_EXPAND_TABS == 0 { - expandTabs(&out, input[beg:end], tabSize) - } else { - out.Write(input[beg:end]) - } + expandTabs(&out, input[beg:end], tabSize) } out.WriteByte('\n')