Allow empty cells in scripts

pull/112/head
Matti Pastell 2018-01-02 15:48:56 +02:00
parent 96bc072619
commit ebd4f6dbed
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ function parse_doc(document::AbstractString, format::ScriptInput)
state = "code"
continue
elseif state == "doc" && strip(line) != "" && strip(read) != ""
elseif state == "doc" #&& strip(line) != "" && strip(read) != ""
state = "code"
(docno > 1) && (read = "\n" * read) # Add whitespace to doc chunk. Needed for markdown output
chunk = DocChunk(read, docno, start_line, format.inline)