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 75a9a09 commit 1087697Copy full SHA for 1087697
web/scripts/builder.py
@@ -88,7 +88,8 @@ def parse_functions(self):
88
for issue in type_info['issues']:
89
issue['description_html'] = markdown.markdown(issue['description'])
90
91
- type_info['description_html'] = markdown.markdown(type_info['description'])
+ if 'description' in type_info:
92
+ type_info['description_html'] = markdown.markdown(type_info['description'])
93
94
if ('returns' in type_info) and ('description' in type_info['returns']):
95
type_info['returns']['description_html'] = markdown.markdown(type_info['returns']['description'])
0 commit comments