Fixed typos and formatting

This commit is contained in:
0mar
2021-06-11 11:59:18 +02:00
parent d169359d51
commit 73a6b3477a
2 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ class ScopeTableGenerator:
description = self.scopes[scopename]['description']
meta_description = self.scopes[scopename].get('metadescription', '')
if meta_description:
description = description.rstrip('.') + f" ({meta_description})."
description = description.rstrip('.') + f" __({meta_description})__."
table_row = [f"{md_indent*depth}`{scopename}`", description]
table_rows.append(table_row)
for subscope in scope_pairs[scopename]: