From 6c44f85510858e75adab6e10de257c0c0cb08d35 Mon Sep 17 00:00:00 2001 From: mattdurham Date: Sat, 25 May 2024 14:47:19 -0400 Subject: [PATCH] Update docs/sources/reference/stdlib/yaml_decode.md Co-authored-by: Clayton Cornell <131809008+clayton-cornell@users.noreply.github.com> --- docs/sources/reference/stdlib/yaml_decode.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/sources/reference/stdlib/yaml_decode.md b/docs/sources/reference/stdlib/yaml_decode.md index 05aa62766f..5e24bf5161 100644 --- a/docs/sources/reference/stdlib/yaml_decode.md +++ b/docs/sources/reference/stdlib/yaml_decode.md @@ -13,9 +13,11 @@ YAML. A common use case of `yaml_decode` is to decode the output of a [`local.file`][] component to an {{< param "PRODUCT_NAME" >}} value. -> Remember to escape double quotes when passing YAML string literals to `yaml_decode`. -> -> For example, the YAML value `key: "value"` is properly represented by the string `"key: \"value\""`. +{{< admonition type="note" >}} + Remember to escape double quotes when passing YAML string literals to `yaml_decode`. + +For example, the YAML value `key: "value"` is properly represented by the string `"key: \"value\""`. +{{< /admonition >}} ## Examples