We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7ebf6 commit 24f356bCopy full SHA for 24f356b
pybind11_mkdoc/mkdoc_lib.py
@@ -126,6 +126,9 @@ def process_comment(comment):
126
s = re.sub(r'[\\@]tparam%s?\s+%s' % (param_group, cpp_group),
127
r'\n\n$Template parameter ``\2``:\n\n', s)
128
129
+ # Remove class and struct tags
130
+ s = re.sub(r'[\\@](class|struct)\s+.*', '', s)
131
+
132
for in_, out_ in {
133
'returns': 'Returns',
134
'return': 'Returns',
0 commit comments