7 lines
105 B
Bash
Executable File
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"
|