commit eba2b1db06c44eb987d9ecb5b6e318f70f673168 parent d70ca94988187d9a642c3965015cc8512b20edd9 Author: David Eisinger <[email protected]> Date: Wed, 1 Nov 2023 16:13:04 -0400 Re-add some lost slashes Diffstat:
| M | content/elsewhere/pandoc-a-tool-i-use-and-like/index.md | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/content/elsewhere/pandoc-a-tool-i-use-and-like/index.md b/content/elsewhere/pandoc-a-tool-i-use-and-like/index.md @@ -54,11 +54,11 @@ results. Leveraging MacOS' `open` command, this one-liner does the trick[^2]: ```sh -cat [filename.md] - | pandoc -t html - > /tmp/output.html - && open /tmp/output.html - && read -n 1 +cat [filename.md] \ + | pandoc -t html \ + > /tmp/output.html \ + && open /tmp/output.html \ + && read -n 1 \ && rm /tmp/output.html ```