Hi all,
Playing around with Hugo and don’t understand the following with my code sample.
$varTest := "foo"
{{ $varTest }}
I outputs foo but like “foo” but wanted it to be foo without the quotation marks, when I remove them from $varTest Hugo gives me an error saying the variable is not valid.
However when I add {{ $varTest }} in a paragraph tag it removes the quotation marks?! I also tried adding | plainify but didn’t do anything.