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 index dcb601b..01212df 100644 --- 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 ```