Re-add some lost slashes

This commit is contained in:
David Eisinger
2023-11-01 16:13:04 -04:00
parent d70ca94988
commit eba2b1db06

View File

@@ -54,11 +54,11 @@ results. Leveraging MacOS' `open` command, this one-liner does the
trick[^2]: trick[^2]:
```sh ```sh
cat [filename.md] cat [filename.md] \
| pandoc -t html | pandoc -t html \
> /tmp/output.html > /tmp/output.html \
&& open /tmp/output.html && open /tmp/output.html \
&& read -n 1 && read -n 1 \
&& rm /tmp/output.html && rm /tmp/output.html
``` ```