Working on improving javadoc parsing
This commit is contained in:
parent
097d11875d
commit
84239d053c
|
@ -51,7 +51,7 @@ def from_camel_case(name: str) -> str:
|
||||||
def parse_javadoc_to_description(text: str| None):
|
def parse_javadoc_to_description(text: str| None):
|
||||||
if text is None:
|
if text is None:
|
||||||
return ''
|
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:
|
def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name: bool) -> str:
|
||||||
javadoc = parse_javadoc_to_description(match.group('javadoc'))
|
javadoc = parse_javadoc_to_description(match.group('javadoc'))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user