Markdown: Difference between revisions
From DWIKI
Created page with " Markup language =Links= *[https://daringfireball.net/projects/markdown/syntax Syntax] " |
m →Links |
||
| (14 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
=Links= | =Links= | ||
*[https://daringfireball.net/projects/markdown/syntax Syntax] | *[https://daringfireball.net/projects/markdown/syntax Syntax] | ||
*[https://www.markdownguide.org/basic-syntax/ Basic syntax] | |||
*[https://www.markdownguide.org/extended-syntax/ Extended syntax] | |||
=Tools= | |||
==Markdown Editors== | |||
===ghostwriter=== | |||
===Typora=== | |||
snap install typora | |||
=Markdown cheat sheet= | |||
==URL== | |||
[The Title](https://examplecom) | |||
==Converters== | |||
===pandoc=== | |||
====docx to markdown==== | |||
pandoc -f docx -t markdown foo.docx -o foo.markdown | |||
====Convert markdown to pdf==== | |||
pandoc -o mydoc.pdf mydoc.md | |||
pandoc --pdf-engine=pdflatex -V 'fontfamily:sans' -V 'margin-top:10mm' -o mydoc.pdf mydoc.md | |||
==mdpdf== | |||
https://github.com/elliotblackburn/mdpdf | |||
==Markdown viewers== | |||
*[https://github.com/ttscoff/mdless mdless] not too bad | |||
*view | |||
*npm -g install mdr | |||
*mdp has problems with lines | |||
*mdless not too pretty | |||
*[https://github.com/charmbracelet/glow/releases glow] | |||
Latest revision as of 09:21, 1 June 2026
Markup language
Links
Tools
Markdown Editors
ghostwriter
Typora
snap install typora
Markdown cheat sheet
URL
[The Title](https://examplecom)
Converters
pandoc
docx to markdown
pandoc -f docx -t markdown foo.docx -o foo.markdown
Convert markdown to pdf
pandoc -o mydoc.pdf mydoc.md
pandoc --pdf-engine=pdflatex -V 'fontfamily:sans' -V 'margin-top:10mm' -o mydoc.pdf mydoc.md
mdpdf
https://github.com/elliotblackburn/mdpdf
Markdown viewers
- mdless not too bad
- view
- npm -g install mdr
- mdp has problems with lines
- mdless not too pretty
