We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4429b1 + 619a76a commit e139869Copy full SHA for e139869
1 file changed
tools/Python/mccodelib/utils.py
@@ -461,7 +461,7 @@ def parse_header(text):
461
par_doc = None
462
for l in bites[tag_P].splitlines():
463
# regex is tolerant for mising ':' in param: [unit] description
464
- m = re.match(r'(\w+)[: \t]*\[([ \w\/\(\)\\\~\-.,\":\%\^\|\{\};\*]*)\][ \t]*(.*)', l)
+ m = re.match(r'(\w+)[: \t]*\[([ \w\/\(\)\\\~\-.,\":\%\^\|\{\};\*\&\#]*)\][ \t]*(.*)', l)
465
par_doc = (None, None, None)
466
if m:
467
par_doc = (m.group(1), m.group(2), m.group(3).strip())
0 commit comments