Out of GUI-based software like ReText or Formiko, and using just a command-line tool like pandoc, is it possible to open markdown files (MIME type association) as an HTML file in a web browser, without any browser-addon too?
Notice that the original markdown file may include links to images or any kind of resources. Therefore, this process should be on-fly (stdout?), without saving the output HTML file to somewhere else like /tmp/
directory.
And how can such a command be included in a .desktop
file?
pandoc --self-containted
, as that will cause pandoc to put all resources into the HTML. – tarleb Mar 22 '21 at 07:16