1
0

Working on improving javadoc parsing
Some checks failed
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2025-02-27 17:06:19 +01:00
parent 097d11875d
commit 84239d053c

View File

@ -51,7 +51,7 @@ def from_camel_case(name: str) -> str:
def parse_javadoc_to_description(text: str| None):
if text is None:
return ''
return re.sub(r'^\s*\*', ' ', text.strip()).strip()
return re.sub(r'\n\s*\*', ' ', text).strip()
def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name: bool) -> str:
javadoc = parse_javadoc_to_description(match.group('javadoc'))