mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-22 13:15:12 +00:00
mkdoc.py: handle \ingroup attributes
This commit is contained in:
parent
d2b628bba4
commit
295acb2da0
@ -100,6 +100,7 @@ def process_comment(comment):
|
||||
s = re.sub(r'\\e\s+%s' % cpp_group, r'*\1*', s)
|
||||
s = re.sub(r'\\em\s+%s' % cpp_group, r'*\1*', s)
|
||||
s = re.sub(r'\\b\s+%s' % cpp_group, r'**\1**', s)
|
||||
s = re.sub(r'\\ingroup\s+%s' % cpp_group, r'', s)
|
||||
s = re.sub(r'\\param%s?\s+%s' % (param_group, cpp_group),
|
||||
r'\n\n$Parameter ``\2``:\n\n', s)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user