[PATCH 3 of 8] minirst: find admonitions before pruning comments and adding margins

Simon Heimberg simohe at besonet.ch
Sat Nov 2 06:36:03 CDT 2013


# HG changeset patch
# User Simon Heimberg <simohe at besonet.ch>
# Date 1383387952 -3600
#      Sat Nov 02 11:25:52 2013 +0100
# Branch stable
# Node ID d6c56b64a342cbf3a75e8280e528c842ea570ed9
# Parent  9949d93cb1e4d43dd1579ad7b7ee3f73e305ff72
minirst: find admonitions before pruning comments and adding margins

Lines with only a directive are not deleted anymore because they are detected
before comments are deleted by prunecomments().
addmargins() will be adapted later.

diff -r 9949d93cb1e4 -r d6c56b64a342 mercurial/minirst.py
--- a/mercurial/minirst.py	Sat Nov 02 11:25:52 2013 +0100
+++ b/mercurial/minirst.py	Sat Nov 02 11:25:52 2013 +0100
@@ -633,9 +633,9 @@
     blocks = splitparagraphs(blocks)
     blocks = updatefieldlists(blocks)
     blocks = updateoptionlists(blocks)
+    blocks = findadmonitions(blocks)
     blocks = addmargins(blocks)
     blocks = prunecomments(blocks)
-    blocks = findadmonitions(blocks)
     return blocks, pruned
 
 def formatblocks(blocks, width):


More information about the Mercurial-devel mailing list