From e85f11c6fcad5461bae612dd5a945c20d300e59a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 4 Apr 2022 12:00:41 -0700 Subject: [PATCH] doc formatting --- docs/parsers/ini.md | 6 +++--- docs/parsers/kv.md | 6 +++--- jc/parsers/ini.py | 6 +++--- jc/parsers/kv.py | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/parsers/ini.md b/docs/parsers/ini.md index 70a2adb3..b0336362 100644 --- a/docs/parsers/ini.md +++ b/docs/parsers/ini.md @@ -11,9 +11,9 @@ Parses standard `INI` files and files containing simple key/value pairs. - Comment prefix can be `#` or `;`. Comments must be on their own line. - If duplicate keys are found, only the last value will be used. -Note: Values starting and ending with quotation marks will have the marks -removed. If you would like to keep the quotation marks, use the `-r` -command-line argument or the `raw=True` argument in `parse()`. +> Note: Values starting and ending with quotation marks will have the marks + removed. If you would like to keep the quotation marks, use the `-r` + command-line argument or the `raw=True` argument in `parse()`. Usage (cli): diff --git a/docs/parsers/kv.md b/docs/parsers/kv.md index 5fbe8acd..65e8dcdc 100644 --- a/docs/parsers/kv.md +++ b/docs/parsers/kv.md @@ -11,9 +11,9 @@ Supports files containing simple key/value pairs. - Comment prefix can be `#` or `;`. Comments must be on their own line. - If duplicate keys are found, only the last value will be used. -Note: Values starting and ending with quotation marks will have the marks -removed. If you would like to keep the quotation marks, use the `-r` -command-line argument or the `raw=True` argument in `parse()`. +> Note: Values starting and ending with quotation marks will have the marks + removed. If you would like to keep the quotation marks, use the `-r` + command-line argument or the `raw=True` argument in `parse()`. Usage (cli): diff --git a/jc/parsers/ini.py b/jc/parsers/ini.py index 77827fdb..8e771a9c 100644 --- a/jc/parsers/ini.py +++ b/jc/parsers/ini.py @@ -6,9 +6,9 @@ Parses standard `INI` files and files containing simple key/value pairs. - Comment prefix can be `#` or `;`. Comments must be on their own line. - If duplicate keys are found, only the last value will be used. -Note: Values starting and ending with quotation marks will have the marks -removed. If you would like to keep the quotation marks, use the `-r` -command-line argument or the `raw=True` argument in `parse()`. +> Note: Values starting and ending with quotation marks will have the marks + removed. If you would like to keep the quotation marks, use the `-r` + command-line argument or the `raw=True` argument in `parse()`. Usage (cli): diff --git a/jc/parsers/kv.py b/jc/parsers/kv.py index a893687a..9706cfbd 100644 --- a/jc/parsers/kv.py +++ b/jc/parsers/kv.py @@ -6,9 +6,9 @@ Supports files containing simple key/value pairs. - Comment prefix can be `#` or `;`. Comments must be on their own line. - If duplicate keys are found, only the last value will be used. -Note: Values starting and ending with quotation marks will have the marks -removed. If you would like to keep the quotation marks, use the `-r` -command-line argument or the `raw=True` argument in `parse()`. +> Note: Values starting and ending with quotation marks will have the marks + removed. If you would like to keep the quotation marks, use the `-r` + command-line argument or the `raw=True` argument in `parse()`. Usage (cli):