Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2017-02-14 23:01:48 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-02-15 18:32:36 +0300
commite046e4de145009ae6baf27f8e0553a666e6a8d3d (patch)
tree625bfa58219150aa7393c904bdf8f1126b10e6a8 /newlib/doc
parentbe5926babbfb23ded1de2181a7524b8c3eebe34c (diff)
Update makedocbook for bd547490
Teach makedocbook how to handle some new things seen in the makedoc markup since bd547490: - struct lines appearing in the synopsis - use of @strong{} texinfo markup
Diffstat (limited to 'newlib/doc')
-rwxr-xr-xnewlib/doc/makedocbook.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/newlib/doc/makedocbook.py b/newlib/doc/makedocbook.py
index 0c84e3c47..cf48c3402 100755
--- a/newlib/doc/makedocbook.py
+++ b/newlib/doc/makedocbook.py
@@ -293,9 +293,8 @@ def synopsis(c, t):
s = ''
for l in t.splitlines():
- if re.match('\s*[#[]', l):
- # a #include, #define etc.
- # fpclassify contains some comments in [ ] brackets
+ if re.match('\s*(#|\[|struct)', l):
+ # preprocessor # directives, structs, comments in square brackets
funcsynopsisinfo = lxml.etree.SubElement(funcsynopsis, 'funcsynopsisinfo')
funcsynopsisinfo.text = l.strip() + '\n'
else:
@@ -468,6 +467,8 @@ def line_markup_convert(p):
# also convert some simple texinfo markup
# convert @emph{foo} to <emphasis>foo</emphasis>
s = re.sub('@emph{(.*?)}', '<emphasis>\\1</emphasis>', s)
+ # convert @strong{foo} to <emphasis role=strong>foo</emphasis>
+ s = re.sub('@strong{(.*?)}', '<emphasis role="strong">\\1</emphasis>', s)
# convert @minus{} to U+2212 MINUS SIGN
s = s.replace('@minus{}', '&#x2212;')
# convert @dots{} to U+2026 HORIZONTAL ELLIPSIS