From 6a7cfde3f73347a81f7375e7612a62fbe2d7a66f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 7 Aug 2024 18:30:31 +0200 Subject: [PATCH] Update yaml.html.markdown (#5017) Two value description texts contain the wrong key name. This commit corrects both key names in the description texts. --- yaml.html.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yaml.html.markdown b/yaml.html.markdown index 6e2545c4..ad3e2310 100644 --- a/yaml.html.markdown +++ b/yaml.html.markdown @@ -84,20 +84,20 @@ folded_style: > # |- and >- removes the trailing blank lines (also called literal/block "strip") literal_strip: |- - This entire block of text will be the value of the 'literal_block' key, + This entire block of text will be the value of the 'literal_strip' key, with trailing blank line being stripped. block_strip: >- - This entire block of text will be the value of 'folded_style', but this + This entire block of text will be the value of 'block_strip', but this time, all newlines will be replaced with a single space and trailing blank line being stripped. # |+ and >+ keeps trailing blank lines (also called literal/block "keep") literal_keep: |+ - This entire block of text will be the value of the 'literal_block' key, + This entire block of text will be the value of the 'literal_keep' key, with trailing blank line being kept. block_keep: >+ - This entire block of text will be the value of 'folded_style', but this + This entire block of text will be the value of 'block_keep', but this time, all newlines will be replaced with a single space and trailing blank line being kept.