Last active
August 29, 2015 14:03
-
-
Save smaboshe/aa9112d3e5f1242e891f to your computer and use it in GitHub Desktop.
Variable substitution doesn't work inside a YAML block
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Variable substitution works here | |
foo: "The quick brown %{ animal } jumped over the lazy dog" | |
# Variable substitution done not work here | |
# Instead, "%{ animal }" gets rendered | |
bar: | | |
The quick | |
brown %{ animal } | |
jumped over | |
the lazy dog | |
# What syntax should be used in the block for the substitution to work? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment