13 lines
395 B
Makefile
13 lines
395 B
Makefile
# requires secondary firefox binary
|
|
|
|
install:
|
|
npm install --save-dev @marp-team/marp-cli
|
|
|
|
all: pdf pptx
|
|
|
|
pptx:
|
|
npx marp --pptx firefox-webapi-with-crates.md --browser firefox --browser-path ~/software/firefox-154-release/firefox --allow-local-files
|
|
|
|
pdf:
|
|
npx marp --pdf firefox-webapi-with-crates.md --browser firefox --browser-path ~/software/firefox-154-release/firefox --allow-local-files
|