You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-spec/layouts/shortcodes/sas-emojis.html

27 lines
496 B
HTML

{{/*
This template is used to render the table of SAS emoji table.
It replaces the old {{sas_emoji_table}} template.
*/}}
{{ $emoji_json := readFile "data-definitions/sas-emoji.json" | transform.Unmarshal }}
<table>
<tr>
<th>Number</th>
<th>Emoji</th>
<th>Unicode</th>
<th>Description</th>
</tr>
{{ range $emoji_json }}
<tr>
<td>{{ .number }}</td>
<td>{{ .emoji }}</td>
<td>{{ .unicode }}</td>
<td>{{ .description }}</td>
</tr>
{{ end }}
</table>