summaryrefslogtreecommitdiff
path: root/rst_parser.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <pgesang@ix.urz.uni-heidelberg.de>2010-09-24 15:38:46 +0200
committerPhilipp Gesang <pgesang@ix.urz.uni-heidelberg.de>2010-09-24 15:38:46 +0200
commit1af3e6e47b9072c481aa2d40cedd3b9b99220817 (patch)
tree909b0c1c0fa351f8be034f04d0d99b3813d5b223 /rst_parser.lua
parent158bf4cc70deff33c6b9016f73ea4c254f03f777 (diff)
downloadcontext-rst-1af3e6e47b9072c481aa2d40cedd3b9b99220817.tar.gz
added line block example to manual
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
,