summaryrefslogtreecommitdiff
path: root/rst_parser.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rst_parser.lua')
-rw-r--r--rst_parser.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/rst_parser.lua b/rst_parser.lua
index 5cf974c..c42b53e 100644
--- a/rst_parser.lua
+++ b/rst_parser.lua
@@ -559,7 +559,8 @@ local parser = P{
line_block = Cs(V"line_block_first"
* (V"line_block_other"
+ V"line_block_empty")^1)
- * V"blank_line"
+ --* V"blank_line"
+ * V"end_block"
/ rst.line_block
,