* src/tools/docmaker/sources.py (column) [Format 2]: Fix regexp.
After the single asterisk there must be no other immediately following asterisk.
This commit is contained in:
parent
63cb256b5b
commit
16b3e62013
|
@ -1,3 +1,10 @@
|
|||
2014-11-29 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/tools/docmaker/sources.py (column) [Format 2]: Fix regexp.
|
||||
|
||||
After the single asterisk there must be no other immediately following
|
||||
asterisk.
|
||||
|
||||
2014-11-29 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/tools/docmaker/tohtml.py: Improve CSS for vertical spacing.
|
||||
|
|
|
@ -98,9 +98,9 @@ start = r'''
|
|||
'''
|
||||
|
||||
column = r'''
|
||||
\s* # any number of whitespace
|
||||
\*{1}(?!/) # followed by precisely one asterisk not followed by `/'
|
||||
(.*) # then anything (group1)
|
||||
\s* # any number of whitespace
|
||||
\*{1}(?![*/]) # followed by precisely one asterisk not followed by `/'
|
||||
(.*) # then anything (group1)
|
||||
'''
|
||||
|
||||
end = r'''
|
||||
|
|
Loading…
Reference in New Issue