You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitHub expressions look like ${{ <expression> }}. sync-template uses Mustache to populate the template, which replaces {{…}}. This results in any GitHub expressions in the template being turned into $, which doesn’t work.
Some options
escape non-Mustache {{ somehow so they end up as {{ in the finished template;
have Mustache ignore {{…}} that doesn’t contain a known value (rather than using the empty string); or
use a different templating system than Mustache.
The text was updated successfully, but these errors were encountered:
GitHub expressions look like
${{ <expression> }}
.sync-template
uses Mustache to populate the template, which replaces{{…}}
. This results in any GitHub expressions in the template being turned into$
, which doesn’t work.Some options
{{
somehow so they end up as{{
in the finished template;{{…}}
that doesn’t contain a known value (rather than using the empty string); orThe text was updated successfully, but these errors were encountered: