I'm trying to add to our Guide templates a link element that would use the article title included as a URL parameter. I've tried this:
<p><a href="https://example.com/form/¶meter={{article.title}}">Click here</a></p>
But the Curlybars {{article.title}} doesn't bring in the article title property like I'd expect. I get the same result using this, outside a link:
<p>{{article.title}}</p>
What am I missing about accessing and using page properties? I've read this support article: https://support.zendesk.com/hc/en-us/articles/205753348-Using-the-Help-Center-templating-language-Guide-Professional-and-Enterprise-

