aboutsummaryrefslogtreecommitdiff
path: root/_extensions
diff options
context:
space:
mode:
Diffstat (limited to '_extensions')
-rw-r--r--_extensions/ruc-play/semantic-markdown/semantic-markdown.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua b/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
index ca4b164..585cb86 100644
--- a/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
+++ b/_extensions/ruc-play/semantic-markdown/semantic-markdown.lua
@@ -262,9 +262,9 @@ local function Statements (block)
if encl == Enclosure.NONE then
local _, x, s = el.text:find("^([^%[\\]*)")
pos = x and x + 1 or pos + 1
- if el.text:sub(pos, pos) == "[" then
- -- entering bracketed enclosure
+ -- entering bracketed enclosure
+ if el.text:sub(pos, pos) == "[" then
pos = pos + 1
chars = chars..s
encl = Enclosure.BRACKETED