1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

doc update

This commit is contained in:
Kelly Brazil
2022-10-18 09:37:10 -07:00
parent 27b6e79c8a
commit 3639e02843
2 changed files with 9 additions and 9 deletions

View File

@ -113,8 +113,8 @@ Returns:
### parser\_mod\_list
```python
def parser_mod_list(show_hidden: bool = True,
show_deprecated: bool = True) -> List[str]
def parser_mod_list(show_hidden: bool = False,
show_deprecated: bool = False) -> List[str]
```
Returns a list of all available parser module names.
@ -124,8 +124,8 @@ Returns a list of all available parser module names.
### plugin\_parser\_mod\_list
```python
def plugin_parser_mod_list(show_hidden: bool = True,
show_deprecated: bool = True) -> List[str]
def plugin_parser_mod_list(show_hidden: bool = False,
show_deprecated: bool = False) -> List[str]
```
Returns a list of plugin parser module names. This function is a
@ -136,8 +136,8 @@ subset of `parser_mod_list()`.
### standard\_parser\_mod\_list
```python
def standard_parser_mod_list(show_hidden: bool = True,
show_deprecated: bool = True) -> List[str]
def standard_parser_mod_list(show_hidden: bool = False,
show_deprecated: bool = False) -> List[str]
```
Returns a list of standard parser module names. This function is a
@ -149,8 +149,8 @@ parsers.
### streaming\_parser\_mod\_list
```python
def streaming_parser_mod_list(show_hidden: bool = True,
show_deprecated: bool = True) -> List[str]
def streaming_parser_mod_list(show_hidden: bool = False,
show_deprecated: bool = False) -> List[str]
```
Returns a list of streaming parser module names. This function is a

View File

@ -1,4 +1,4 @@
.TH jc 1 2022-10-15 1.22.1 "JSON Convert"
.TH jc 1 2022-10-18 1.22.1 "JSON Convert"
.SH NAME
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
.SH SYNOPSIS