summaryrefslogtreecommitdiff
path: root/src/rst_parser.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/rst_parser.lua')
-rw-r--r--src/rst_parser.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rst_parser.lua b/src/rst_parser.lua
index 82e906a..2055e1b 100644
--- a/src/rst_parser.lua
+++ b/src/rst_parser.lua
@@ -897,7 +897,7 @@ local rst_parser = P {
-- the next rule handles enumerations as well
bullet_list = V"bullet_init"
- * (V"blank_line"^-1 * (V"bullet_list" + V"bullet_continue"))^1
+ * (V"blank_line"^-1 * (V"bullet_list" + V"bullet_continue"))^0
* V"bullet_stop"
* Cmt(Cc(nil), function (s, i)
local depth = state.depth
@@ -907,7 +907,8 @@ local rst_parser = P {
state.lastbullet = state.lastbullets[depth]
state.depth = depth
return true
- end),
+ end)
+ ,
bullet_stop = V"end_block" / rst.stopitemize,