summaryrefslogtreecommitdiff
path: root/bin/any2qmd.sh
blob: 93112a193ef4fe673e2f383c1030bc4dfe05934d (plain)
  1. #!/bin/sh
  2. set -au
  3. INFILE=$1
  4. OUTFILE="$(dirname "$INFILE")/${2:-index.qmd}"
  5. pandoc --to commonmark+smart --wrap none "$INFILE" | perl -pe 's/ --- / -- /g; s/\\(?=['"'"'"])//g; s/^- / * /g;' > "$OUTFILE"