dotfiles/scripts/mdread
2025-05-12 15:50:02 -06:00

7 lines
105 B
Bash
Executable File

#!/bin/sh
o="$(mktemp).html"
t="$(basename $1)"
pandoc "$1" -o "$o" --metadata="title:$t"
xdg-open "$o"