This commit is contained in:
Marvin Blum
2015-11-14 16:43:36 +01:00
parent 1208bda68c
commit 59f02f7782
6 changed files with 47 additions and 4 deletions

View File

@@ -314,7 +314,7 @@ func (c *Compiler) parseInlineCode() string {
if len(code) > 2 {
compiler := Compiler{}
output = "{"+compiler.Parse(tokenizer.Tokenize([]byte(code[1:len(code)-1])), false)+"}"
output = "{"+compiler.Parse(tokenizer.Tokenize([]byte(code[1:len(code)-1]), true), false)+"}"
}
c.expect(")")