7 lines
151 B
Bash
7 lines
151 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
IMG=docker.io/marpteam/marp-cli:latest
|
||
|
|
||
|
docker run --rm -v "$PWD:/home/marp/app/" --entrypoint marp-cli.js "$IMG" \
|
||
|
./Pitch.md --pdf
|