aboutsummaryrefslogtreecommitdiff
path: root/src/lib/print.sh
blob: 1addd3da0902609b17cd0cdb25421941a491ecdd (plain) (blame)
1
2
3
4
5
6
7
8
9
function print() {
	echo

	get "${1}" |
		jq -r '.[] | ["[", .title.romaji, "](https://hiruki.xyz/i/", .id, ") • ", .id] | join("")' |
		sed 's/^/* /' |
		mdcat |
		sed 's/^/   /'
}