blob: c2a15972abebabb65bf7a8646265a6b8c83ee039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
filename=$1
jq -n \
--argjson title "$(./meta title $filename)" \
--argjson subtitle "$(./meta subtitle $filename)" \
--argjson author "$(./meta author $filename)" \
--argjson date "$(./meta date $filename)" \
--argjson tags "$(./meta tags $filename)" \
--argjson cover "$(./meta cover $filename)" \
--argjson id "$(basename $filename .md | jq --raw-input)" \
'{
"title": $title,
"subtitle": $subtitle,
"author": $author,
"date": $date,
"tags": $tags,
"cover": $cover,
"id": $id
}'
|