Don't link generic arguments on the docs

This commit is contained in:
Lonami Exo
2017-04-08 12:41:31 +02:00
parent 64a1a69a5e
commit 356ed164f7
2 changed files with 23 additions and 9 deletions

View File

@@ -221,9 +221,12 @@ def generate_documentation(scheme_file):
bold=True)
# Type row
docs.add_row(arg.type,
link=get_path_for_type(arg.type, relative_to=filename),
align='center')
if arg.is_generic:
docs.add_row('!' + arg.type, align='center')
else:
docs.add_row(arg.type,
link=get_path_for_type(arg.type, relative_to=filename),
align='center')
# Create a description for this argument
description = ''