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):