I have the following in a template that I want to use for replying to tweets, Indieweb style. Using the HTML entity for “@” before each username produces the error shown in the subject above.
As the only YAML involved is declaring the layout, is this really a Liquid error?
<article class="h-entry">
<h1 class="p-name"><a class="u-url" href="{{ page.url }}">{{ page.title }}</a></h1>
<div class="meta"><time datetime="{{ page.date | date: "%Y-%m-%d" }}" class="dt-published">{{ page.date | date: '%B %-d, %Y' }}</time></div>
<div><a class="u-in-reply-to" href="{{ tweet-url }}"></a></div>
<div class="e-content">@{{ twitter-user }} {{ content }}
</div>
<a href="https://brid.gy/publish/twitter?bridgy_omit_link=true"></a>
</article>