mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
`{{#tr}}` supports HTML and allows translators to accidentally
introduce HTML, so it’s safer to use the `{{t}}` helper unless HTML is
needed.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
12 lines
350 B
Handlebars
12 lines
350 B
Handlebars
{{! Contents of "view code in playground" popover for code blocks}}
|
|
<ul class="nav nav-list">
|
|
{{#each playground_info}}
|
|
<li>
|
|
<a href="{{this/playground_url}}" target="_blank" rel="noopener noreferrer" class="popover_playground_link">
|
|
{{t "View in {name}" }}
|
|
</a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
|