2024-10-12 10:02:31 +00:00
|
|
|
#! /usr/bin/env sh
|
|
|
|
|
|
|
|
main() {
|
|
|
|
local file="$(readlink --canonicalize-existing "${0}")"
|
|
|
|
local root="$(dirname "${file}")"
|
2024-10-12 18:21:36 +00:00
|
|
|
local name="main"
|
|
|
|
local input="${root}/${name}.md"
|
|
|
|
local output="${root}/${name}.pdf"
|
2024-10-28 18:17:40 +00:00
|
|
|
local style="espresso"
|
2024-10-12 10:02:31 +00:00
|
|
|
pandoc \
|
|
|
|
"${input}" \
|
2024-10-12 18:21:36 +00:00
|
|
|
--highlight-style "${style}" \
|
2024-10-12 10:02:31 +00:00
|
|
|
--output "${output}" \
|
|
|
|
--pdf-engine "xelatex" \
|
|
|
|
\
|
|
|
|
&& \
|
|
|
|
evince \
|
|
|
|
"${output}" \
|
|
|
|
&
|
|
|
|
}
|
|
|
|
|
|
|
|
main
|