-
-
Save mikecmpbll/7943730185ee150f4672 to your computer and use it in GitHub Desktop.
This file contains hidden or 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