[master] 39992c7e9 man: Fix rendering of certain sections in vtc(7)

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Mon Nov 28 16:22:05 UTC 2022


commit 39992c7e95404ad2a53da3818fa76d34501b5f79
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date:   Mon Nov 28 17:17:15 2022 +0100

    man: Fix rendering of certain sections in vtc(7)
    
    The matching regular expression did not align with the substitution
    regular expression.
    
    Refs d2e526ce95d6d8426ec170b4cfc78d41abc07179

diff --git a/doc/sphinx/vtc-syntax.py b/doc/sphinx/vtc-syntax.py
index f5533e84a..cfc5a05ab 100644
--- a/doc/sphinx/vtc-syntax.py
+++ b/doc/sphinx/vtc-syntax.py
@@ -38,7 +38,7 @@ import re
 def parse_file(fn, cl, tl, sl):
     p = False
     section = ""
-    resec = re.compile("\s*/\* SECTION: ")
+    resec = re.compile("\s*/?\* SECTION: ")
 
     try:
         # Python3


More information about the varnish-commit mailing list