We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
バージョンは 0.5.15
0.5.15
mdファイル内で、 {{ your name }} のような記述があると、ページが真っ白になり次のエラーが出ていました。
{{ your name }}
Handlebarsの {{ }} と扱われてしまっているようです。
{{ }}
次のように書いた場合、ページは表示されますが、 {{ aaa }} と書いた箇所には何も描画されず、あああとなっています。
{{ aaa }}
あああ
{{ aaa }}あああ
バッククオートで囲っても同様に {{ aaa }} と書いた箇所には何も描画されません。HTMLを見ると <code>></code>あああ となっています。
<code>></code>あああ
`{{ aaa }}`あああ
また、次のように、複数の単語を書いた場合、ページは真っ白になり、DevToolsのコンソールにエラー( "Missing helper: "aaaa""... )が表示されます。
"Missing helper: "aaaa""...
{{ aaa bbb }}
{{ }} を書かない
The text was updated successfully, but these errors were encountered:
https://stackoverflow.com/questions/52020784/escaping-curly-brackets-standing-next-to-expression-in-handlebars
{{ }}を書かないか、3連バッククォートで囲むぐらいしか無さそう
Sorry, something went wrong.
No branches or pull requests
バージョンは
0.5.15
mdファイル内で、
{{ your name }}
のような記述があると、ページが真っ白になり次のエラーが出ていました。Handlebarsの
{{ }}
と扱われてしまっているようです。現象
現象1) 画面は表示されるが文字は描画されていない
次のように書いた場合、ページは表示されますが、
{{ aaa }}
と書いた箇所には何も描画されず、あああ
となっています。バッククオートで囲っても同様に
{{ aaa }}
と書いた箇所には何も描画されません。HTMLを見ると<code>></code>あああ
となっています。現象2)画面が真っ白になりエラーが出ている
また、次のように、複数の単語を書いた場合、ページは真っ白になり、DevToolsのコンソールにエラー(
"Missing helper: "aaaa""...
)が表示されます。いまのところの対応
{{ }}
を書かないThe text was updated successfully, but these errors were encountered: