mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-15 00:05:11 +02:00
add space after bullets
This commit is contained in:
@ -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 = ''
|
||||
|
22
docs/lib.md
22
docs/lib.md
@ -5,17 +5,17 @@
|
||||
|
||||
## Table of Contents
|
||||
|
||||
*[jc.lib](#jc.lib)
|
||||
*[all_parser_info](#jc.lib.all_parser_info)
|
||||
*[get_help](#jc.lib.get_help)
|
||||
*[get_parser](#jc.lib.get_parser)
|
||||
*[parse](#jc.lib.parse)
|
||||
*[parser_info](#jc.lib.parser_info)
|
||||
*[parser_mod_list](#jc.lib.parser_mod_list)
|
||||
*[plugin_parser_mod_list](#jc.lib.plugin_parser_mod_list)
|
||||
*[slurpable_parser_mod_list](#jc.lib.slurpable_parser_mod_list)
|
||||
*[standard_parser_mod_list](#jc.lib.standard_parser_mod_list)
|
||||
*[streaming_parser_mod_list](#jc.lib.streaming_parser_mod_list)
|
||||
* [jc.lib](#jc.lib)
|
||||
* [all_parser_info](#jc.lib.all_parser_info)
|
||||
* [get_help](#jc.lib.get_help)
|
||||
* [get_parser](#jc.lib.get_parser)
|
||||
* [parse](#jc.lib.parse)
|
||||
* [parser_info](#jc.lib.parser_info)
|
||||
* [parser_mod_list](#jc.lib.parser_mod_list)
|
||||
* [plugin_parser_mod_list](#jc.lib.plugin_parser_mod_list)
|
||||
* [slurpable_parser_mod_list](#jc.lib.slurpable_parser_mod_list)
|
||||
* [standard_parser_mod_list](#jc.lib.standard_parser_mod_list)
|
||||
* [streaming_parser_mod_list](#jc.lib.streaming_parser_mod_list)
|
||||
|
||||
jc - JSON Convert lib module
|
||||
|
||||
|
@ -5,9 +5,9 @@
|
||||
|
||||
## Table of Contents
|
||||
|
||||
*[jc.parsers.universal](#jc.parsers.universal)
|
||||
*[simple_table_parse](#jc.parsers.universal.simple_table_parse)
|
||||
*[sparse_table_parse](#jc.parsers.universal.sparse_table_parse)
|
||||
* [jc.parsers.universal](#jc.parsers.universal)
|
||||
* [simple_table_parse](#jc.parsers.universal.simple_table_parse)
|
||||
* [sparse_table_parse](#jc.parsers.universal.sparse_table_parse)
|
||||
|
||||
jc - JSON Convert universal parsers
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
|
||||
## Table of Contents
|
||||
|
||||
*[jc.streaming](#jc.streaming)
|
||||
*[add_jc_meta](#jc.streaming.add_jc_meta)
|
||||
*[raise_or_yield](#jc.streaming.raise_or_yield)
|
||||
*[stream_error](#jc.streaming.stream_error)
|
||||
*[stream_success](#jc.streaming.stream_success)
|
||||
*[streaming_input_type_check](#jc.streaming.streaming_input_type_check)
|
||||
*[streaming_line_input_type_check](#jc.streaming.streaming_line_input_type_check)
|
||||
* [jc.streaming](#jc.streaming)
|
||||
* [add_jc_meta](#jc.streaming.add_jc_meta)
|
||||
* [raise_or_yield](#jc.streaming.raise_or_yield)
|
||||
* [stream_error](#jc.streaming.stream_error)
|
||||
* [stream_success](#jc.streaming.stream_success)
|
||||
* [streaming_input_type_check](#jc.streaming.streaming_input_type_check)
|
||||
* [streaming_line_input_type_check](#jc.streaming.streaming_line_input_type_check)
|
||||
|
||||
jc - JSON Convert streaming utils
|
||||
|
||||
|
@ -5,20 +5,20 @@
|
||||
|
||||
## Table of Contents
|
||||
|
||||
*[jc.utils](#jc.utils)
|
||||
*[compatibility](#jc.utils.compatibility)
|
||||
*[convert_size_to_int](#jc.utils.convert_size_to_int)
|
||||
*[convert_to_bool](#jc.utils.convert_to_bool)
|
||||
*[convert_to_float](#jc.utils.convert_to_float)
|
||||
*[convert_to_int](#jc.utils.convert_to_int)
|
||||
*[error_message](#jc.utils.error_message)
|
||||
*[has_data](#jc.utils.has_data)
|
||||
*[input_type_check](#jc.utils.input_type_check)
|
||||
*[is_compatible](#jc.utils.is_compatible)
|
||||
*[line_slice](#jc.utils.line_slice)
|
||||
*[normalize_key](#jc.utils.normalize_key)
|
||||
*[remove_quotes](#jc.utils.remove_quotes)
|
||||
*[warning_message](#jc.utils.warning_message)
|
||||
* [jc.utils](#jc.utils)
|
||||
* [compatibility](#jc.utils.compatibility)
|
||||
* [convert_size_to_int](#jc.utils.convert_size_to_int)
|
||||
* [convert_to_bool](#jc.utils.convert_to_bool)
|
||||
* [convert_to_float](#jc.utils.convert_to_float)
|
||||
* [convert_to_int](#jc.utils.convert_to_int)
|
||||
* [error_message](#jc.utils.error_message)
|
||||
* [has_data](#jc.utils.has_data)
|
||||
* [input_type_check](#jc.utils.input_type_check)
|
||||
* [is_compatible](#jc.utils.is_compatible)
|
||||
* [line_slice](#jc.utils.line_slice)
|
||||
* [normalize_key](#jc.utils.normalize_key)
|
||||
* [remove_quotes](#jc.utils.remove_quotes)
|
||||
* [warning_message](#jc.utils.warning_message)
|
||||
|
||||
jc - JSON Convert utils
|
||||
|
||||
|
Reference in New Issue
Block a user