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:
@ -42,9 +42,9 @@ for attribute in dir(module):
|
|||||||
functions.append(attribute)
|
functions.append(attribute)
|
||||||
|
|
||||||
######## TABLE OF CONTENTS ########
|
######## 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:
|
for api in functions:
|
||||||
toc = f'{toc} *[{api}](#{mod_path}.{api})\n'
|
toc = f'{toc} * [{api}](#{mod_path}.{api})\n'
|
||||||
|
|
||||||
######## API DOCS ########
|
######## API DOCS ########
|
||||||
api_docs = ''
|
api_docs = ''
|
||||||
|
22
docs/lib.md
22
docs/lib.md
@ -5,17 +5,17 @@
|
|||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
*[jc.lib](#jc.lib)
|
* [jc.lib](#jc.lib)
|
||||||
*[all_parser_info](#jc.lib.all_parser_info)
|
* [all_parser_info](#jc.lib.all_parser_info)
|
||||||
*[get_help](#jc.lib.get_help)
|
* [get_help](#jc.lib.get_help)
|
||||||
*[get_parser](#jc.lib.get_parser)
|
* [get_parser](#jc.lib.get_parser)
|
||||||
*[parse](#jc.lib.parse)
|
* [parse](#jc.lib.parse)
|
||||||
*[parser_info](#jc.lib.parser_info)
|
* [parser_info](#jc.lib.parser_info)
|
||||||
*[parser_mod_list](#jc.lib.parser_mod_list)
|
* [parser_mod_list](#jc.lib.parser_mod_list)
|
||||||
*[plugin_parser_mod_list](#jc.lib.plugin_parser_mod_list)
|
* [plugin_parser_mod_list](#jc.lib.plugin_parser_mod_list)
|
||||||
*[slurpable_parser_mod_list](#jc.lib.slurpable_parser_mod_list)
|
* [slurpable_parser_mod_list](#jc.lib.slurpable_parser_mod_list)
|
||||||
*[standard_parser_mod_list](#jc.lib.standard_parser_mod_list)
|
* [standard_parser_mod_list](#jc.lib.standard_parser_mod_list)
|
||||||
*[streaming_parser_mod_list](#jc.lib.streaming_parser_mod_list)
|
* [streaming_parser_mod_list](#jc.lib.streaming_parser_mod_list)
|
||||||
|
|
||||||
jc - JSON Convert lib module
|
jc - JSON Convert lib module
|
||||||
|
|
||||||
|
@ -5,9 +5,9 @@
|
|||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
*[jc.parsers.universal](#jc.parsers.universal)
|
* [jc.parsers.universal](#jc.parsers.universal)
|
||||||
*[simple_table_parse](#jc.parsers.universal.simple_table_parse)
|
* [simple_table_parse](#jc.parsers.universal.simple_table_parse)
|
||||||
*[sparse_table_parse](#jc.parsers.universal.sparse_table_parse)
|
* [sparse_table_parse](#jc.parsers.universal.sparse_table_parse)
|
||||||
|
|
||||||
jc - JSON Convert universal parsers
|
jc - JSON Convert universal parsers
|
||||||
|
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
*[jc.streaming](#jc.streaming)
|
* [jc.streaming](#jc.streaming)
|
||||||
*[add_jc_meta](#jc.streaming.add_jc_meta)
|
* [add_jc_meta](#jc.streaming.add_jc_meta)
|
||||||
*[raise_or_yield](#jc.streaming.raise_or_yield)
|
* [raise_or_yield](#jc.streaming.raise_or_yield)
|
||||||
*[stream_error](#jc.streaming.stream_error)
|
* [stream_error](#jc.streaming.stream_error)
|
||||||
*[stream_success](#jc.streaming.stream_success)
|
* [stream_success](#jc.streaming.stream_success)
|
||||||
*[streaming_input_type_check](#jc.streaming.streaming_input_type_check)
|
* [streaming_input_type_check](#jc.streaming.streaming_input_type_check)
|
||||||
*[streaming_line_input_type_check](#jc.streaming.streaming_line_input_type_check)
|
* [streaming_line_input_type_check](#jc.streaming.streaming_line_input_type_check)
|
||||||
|
|
||||||
jc - JSON Convert streaming utils
|
jc - JSON Convert streaming utils
|
||||||
|
|
||||||
|
@ -5,20 +5,20 @@
|
|||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
*[jc.utils](#jc.utils)
|
* [jc.utils](#jc.utils)
|
||||||
*[compatibility](#jc.utils.compatibility)
|
* [compatibility](#jc.utils.compatibility)
|
||||||
*[convert_size_to_int](#jc.utils.convert_size_to_int)
|
* [convert_size_to_int](#jc.utils.convert_size_to_int)
|
||||||
*[convert_to_bool](#jc.utils.convert_to_bool)
|
* [convert_to_bool](#jc.utils.convert_to_bool)
|
||||||
*[convert_to_float](#jc.utils.convert_to_float)
|
* [convert_to_float](#jc.utils.convert_to_float)
|
||||||
*[convert_to_int](#jc.utils.convert_to_int)
|
* [convert_to_int](#jc.utils.convert_to_int)
|
||||||
*[error_message](#jc.utils.error_message)
|
* [error_message](#jc.utils.error_message)
|
||||||
*[has_data](#jc.utils.has_data)
|
* [has_data](#jc.utils.has_data)
|
||||||
*[input_type_check](#jc.utils.input_type_check)
|
* [input_type_check](#jc.utils.input_type_check)
|
||||||
*[is_compatible](#jc.utils.is_compatible)
|
* [is_compatible](#jc.utils.is_compatible)
|
||||||
*[line_slice](#jc.utils.line_slice)
|
* [line_slice](#jc.utils.line_slice)
|
||||||
*[normalize_key](#jc.utils.normalize_key)
|
* [normalize_key](#jc.utils.normalize_key)
|
||||||
*[remove_quotes](#jc.utils.remove_quotes)
|
* [remove_quotes](#jc.utils.remove_quotes)
|
||||||
*[warning_message](#jc.utils.warning_message)
|
* [warning_message](#jc.utils.warning_message)
|
||||||
|
|
||||||
jc - JSON Convert utils
|
jc - JSON Convert utils
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user