diff options
Diffstat (limited to 'rst_parser.lua')
-rw-r--r-- | rst_parser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rst_parser.lua b/rst_parser.lua index fb0fb4a..f0e2709 100644 --- a/rst_parser.lua +++ b/rst_parser.lua @@ -833,7 +833,7 @@ local parser = P{ -- the next rule handles enumerations as well bullet_list = V"bullet_init" - * (V"blank_line"^-1 * (V"bullet_list" + V"bullet_continue" + V"comment"))^0 + * (V"blank_line"^-1 * (V"bullet_list" + V"bullet_continue"))^1 * V"bullet_stop" * Cmt(Cc(nil), function (s, i) local t = state |