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
2023-01-11 11:17:47 -08:00
parent ea4332d8e4
commit 53ad793ff8
6 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,6 @@
jc changelog jc changelog
20230108 v1.22.5 20230111 v1.22.5
- Add TOML file parser - Add TOML file parser
- Add INI with duplicate key support file parser - Add INI with duplicate key support file parser
- Add AIX support for the `arp` command parser - Add AIX support for the `arp` command parser

View File

@ -10,6 +10,8 @@ Parses standard INI files.
- Delimiter can be `=` or `:`. Missing values are supported. - Delimiter can be `=` or `:`. Missing values are supported.
- Comment prefix can be `#` or `;`. Comments must be on their own line. - Comment prefix can be `#` or `;`. Comments must be on their own line.
- If duplicate keys are found, only the last value will be used. - If duplicate keys are found, only the last value will be used.
- If any section names have the same name as a top-level key, the top-level
key will be overwritten by the section data.
> Note: Values starting and ending with double or single quotation marks > Note: Values starting and ending with double or single quotation marks
> will have the marks removed. If you would like to keep the quotation > will have the marks removed. If you would like to keep the quotation

View File

@ -8,11 +8,12 @@ jc - JSON Convert INI with duplicate key file parser
Parses standard INI files and preserves duplicate values. All values are Parses standard INI files and preserves duplicate values. All values are
contained in lists/arrays. contained in lists/arrays.
If multi-line values are used, each line will be a separate item in the
value list. Blank lines in multi-line values are not supported.
- Delimiter can be `=` or `:`. Missing values are supported. - Delimiter can be `=` or `:`. Missing values are supported.
- Comment prefix can be `#` or `;`. Comments must be on their own line. - Comment prefix can be `#` or `;`. Comments must be on their own line.
- If any section names have the same name as a top-level key, the top-level
key will be overwritten by the section data.
- If multi-line values are used, each line will be a separate item in the
value list. Blank lines in multi-line values are not supported.
> Note: Values starting and ending with double or single quotation marks > Note: Values starting and ending with double or single quotation marks
> will have the marks removed. If you would like to keep the quotation > will have the marks removed. If you would like to keep the quotation

View File

@ -5,6 +5,8 @@ Parses standard INI files.
- Delimiter can be `=` or `:`. Missing values are supported. - Delimiter can be `=` or `:`. Missing values are supported.
- Comment prefix can be `#` or `;`. Comments must be on their own line. - Comment prefix can be `#` or `;`. Comments must be on their own line.
- If duplicate keys are found, only the last value will be used. - If duplicate keys are found, only the last value will be used.
- If any section names have the same name as a top-level key, the top-level
key will be overwritten by the section data.
> Note: Values starting and ending with double or single quotation marks > Note: Values starting and ending with double or single quotation marks
> will have the marks removed. If you would like to keep the quotation > will have the marks removed. If you would like to keep the quotation

View File

@ -3,11 +3,12 @@
Parses standard INI files and preserves duplicate values. All values are Parses standard INI files and preserves duplicate values. All values are
contained in lists/arrays. contained in lists/arrays.
If multi-line values are used, each line will be a separate item in the
value list. Blank lines in multi-line values are not supported.
- Delimiter can be `=` or `:`. Missing values are supported. - Delimiter can be `=` or `:`. Missing values are supported.
- Comment prefix can be `#` or `;`. Comments must be on their own line. - Comment prefix can be `#` or `;`. Comments must be on their own line.
- If any section names have the same name as a top-level key, the top-level
key will be overwritten by the section data.
- If multi-line values are used, each line will be a separate item in the
value list. Blank lines in multi-line values are not supported.
> Note: Values starting and ending with double or single quotation marks > Note: Values starting and ending with double or single quotation marks
> will have the marks removed. If you would like to keep the quotation > will have the marks removed. If you would like to keep the quotation

View File

@ -1,4 +1,4 @@
.TH jc 1 2023-01-10 1.22.5 "JSON Convert" .TH jc 1 2023-01-11 1.22.5 "JSON Convert"
.SH NAME .SH NAME
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
.SH SYNOPSIS .SH SYNOPSIS