I have this content in YAML:
Foo:
bar: |
Foo bar.
And it works fine, but this:
Foo:
bar: |
40 % Foo bar.
Fails:
ParameterNotFoundException: The parameter "foobar" has a dependency on a non-existent parameter " Foo bar.".
Based on the error, it clearly occurs right where the percent sign % appears. Is there some way to encode it or make it not fail?