fix crash on illegal text input

(ok it's probably the wrong way)
此提交包含在:
Vanessa Ezekowitz
2013-12-30 00:46:09 -05:00
父節點 651fea2a00
當前提交 9f8e99ea95

查看文件

@@ -211,6 +211,7 @@ local fences_with_sign = { }
local function split_lines_and_words(text)
local lines = { }
local line = { }
if not text then return end
for word in text:gmatch("%S+") do
if word == "|" then
table.insert(lines, line)