forked from q/element-web-patches
25 lines
514 B
Bash
Executable File
25 lines
514 B
Bash
Executable File
#!/bin/sh
|
|
# Run fetch-latest-format.sh for the most up-to-date emojibase format. Target is raw.json
|
|
reactions="$(yq . /dev/stdin < reactions.yaml)"
|
|
jq -n --argjson reactions "$reactions" \
|
|
'[
|
|
$reactions[] | {
|
|
annotation: .emoji,
|
|
label: .emoji,
|
|
emoticon: .emoji,
|
|
hexcode: "2721",
|
|
unicode: .emoji,
|
|
shortcodes: (.tags? + [ .emoji ]),
|
|
tags: (.tags? + [ .emoji ]),
|
|
emoji: .emoji,
|
|
text: .emoji,
|
|
type: 0,
|
|
order: 0,
|
|
group: 8,
|
|
subgroup: 93,
|
|
version: 0.7
|
|
}
|
|
]'
|
|
|
|
|