1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

add space after bullets

This commit is contained in:
Kelly Brazil
2024-03-16 18:28:52 -07:00
parent aaee394e51
commit ee1135003b
5 changed files with 37 additions and 37 deletions

View File

@ -42,9 +42,9 @@ for attribute in dir(module):
functions.append(attribute)
######## TABLE OF CONTENTS ########
toc = f'## Table of Contents\n\n*[{mod_path}](#{mod_path})\n'
toc = f'## Table of Contents\n\n* [{mod_path}](#{mod_path})\n'
for api in functions:
toc = f'{toc} *[{api}](#{mod_path}.{api})\n'
toc = f'{toc} * [{api}](#{mod_path}.{api})\n'
######## API DOCS ########
api_docs = ''