markdown tools/file format converters
I today noted a thread started by rockedge re using markdown for this Puppy Linux phpBB website: viewtopic.php?p=9010#p9010
In the past I used to write quite a bit in html (including making two or three column fluid/auto-sizing layouts using css). However, aside from some tweaks or quick additions, I rarely do so any more. I do however continue to create websites, such as https://tinylinux.info (which I keep meaning to update on a regular basis), but nowadays I use markdown files plus static site generator software for most of that.
This post is simply about some markdown tools/converters I find useful. In practice, as I've posted about previously, I tend to rely on cherrytree hierarchical notekeeper for keeping notes concerning anything I'm developing, but that can export node pages to html, which can then be converted into markdown using some of the tools below. Alternatively, any generated markdown can be exported into html (or, for example pdf). Just a short list to get things going for further discussion and additions of others:
Online web-based apps:
https://github.com/benweet/stackedit
https://stackedit.io/
Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.
https://github.com/joemccann/dillinger
https://dillinger.io/
One thing I really like about Dillinger is that it has the great feature that it can not only render markup or export as html or pdf, but also can import html file and produce markup (some limitations admittedly).
Downloadable apps:
https://github.com/jamiemcg/remarkable
http://remarkableapp.github.io/
Remarkable is an open source Markdown Editor for Linux. You can download the latest version from the project site. It is also available on the AUR.
https://github.com/domchristie/turndown
http://domchristie.github.io/turndown/
This one is for html into markdown (can change some of the markdown syntax via selections). I find this really useful copying some cherrytree node contents via html export into markdown format. The second link for turndown above is an online demo (you can use that without installing in other words).
Another particularly useful resource is:
pandoc.org
If you need to convert files from one markup format into another, pandoc is your swiss-army knife.
wiak