From 89e845a068ee997103fbd7e60de2cdf167ee2ed2 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 18 Dec 2019 23:18:34 +0100 Subject: [PATCH] Update blockquote example --- styles/README.md | 4 +++- styles/examples/block_quote.style | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/styles/README.md b/styles/README.md index 8c097dd..2b3ffbf 100644 --- a/styles/README.md +++ b/styles/README.md @@ -12,6 +12,7 @@ elements support the following style settings: | prefix | string | Printed before the block's first element | | suffix | string | Printed after the block's last element | | indent | number | Specifies the indentation of the block | +| indent_token | string | Specifies the indentation format | | margin | number | Specifies the margin around the block | | color | color | Defines the default text color for the block | | background_color | color | Defines the default background color for the block | @@ -131,7 +132,8 @@ Style: ```json "block_quote": { - "color": "200" + "indent": 1, + "indent_token": "> " } ``` diff --git a/styles/examples/block_quote.style b/styles/examples/block_quote.style index ab3602f..90f0810 100644 --- a/styles/examples/block_quote.style +++ b/styles/examples/block_quote.style @@ -1,5 +1,6 @@ { "block_quote": { - "color": "200" + "indent": 1, + "indent_token": "> " } }