diff --git a/docs/parsers/email_address.md b/docs/parsers/email_address.md index 1699f339..a3577408 100644 --- a/docs/parsers/email_address.md +++ b/docs/parsers/email_address.md @@ -7,7 +7,7 @@ jc - JSON Convert Email Address string parser Usage (cli): - $ echo "johndoe@example.com" | jc --email-address + $ echo "username@example.com" | jc --email-address Usage (module): @@ -17,9 +17,9 @@ Usage (module): Schema: { + "username": string, "domain": string, "local": string, - "local_plus_prefix": string or null, "local_plus_suffix": string or null } @@ -27,17 +27,17 @@ Examples: $ echo 'joe.user@gmail.com' | jc --email-address -p { + "username": "joe.user", "domain": "gmail.com", "local": "joe.user", - "local_plus_prefix": null, "local_plus_suffix": null } $ echo 'joe.user+spam@gmail.com' | jc --email-address -p { + "username": "joe.user", "domain": "gmail.com", "local": "joe.user+spam", - "local_plus_prefix": "joe.user", "local_plus_suffix": "spam" } diff --git a/docs/parsers/url.md b/docs/parsers/url.md index 1ae8bf83..ac464631 100644 --- a/docs/parsers/url.md +++ b/docs/parsers/url.md @@ -32,7 +32,7 @@ Schema: { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null @@ -51,7 +51,7 @@ Schema: "port": integer or null, # [1] "encoded": { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null @@ -66,7 +66,7 @@ Schema: }, "decoded": { "url": string, - "scheme": string, + "scheme": string or null, "netloc": string or null, "path": string or null, "path_list": [ array or null diff --git a/man/jc.1 b/man/jc.1 index f75e5159..eca414e0 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-07-22 1.20.3 "JSON Convert" +.TH jc 1 2022-07-23 1.20.3 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools and file-types .SH SYNOPSIS