Mar 05 2024
Markdown is a standard for formatting documents. Think about when you use Microsoft Word or Google Docs and you make text
bold italic
That is formatting. Markdown is a standard you can learn and take it to any app that supports markdown, which is most of them nowdays.
All of the formatting is done in the text itself, meaning that you don't have to move your mouse to a toolbar at the top of the program to change the formatting. The less you have to leave your keyboard, the faster you can type.
Since markdown is an open standard and is not owned by a particular company, once you learn it you can use it the same way in any app that supports it.
Since you can do all of your formatting through text, you don't have to leave your keyboard as you're typing. If you write articles, books, documentation, legal documents, you'll benefit from faster typing.
Markdown can be converted into many other formats such as:
HTML (This blog post is written in markdown)
Word documents (if you need to share on google docs for example)
Meaning that you can write your document once and export it to any format you need.
You can use the following apps:
Dillinger Online editor so you can follow along with this article.
Typora $15 one time. It's like notepad with markdown support. Also supports different themes. Good for taking notes.
Obsidian Free. Great note taking tool and markdown editor.
When you write with markdown, text like this:
1# My heading 2 3This is a sentence with **bold** text as well as *italic* text. 4 5## Smaller heading 6 7- This 8- Will 9- Be10- A list
Will turn into:
This is a sentence with bold text as well as italic text.
This
Will
Be
A list
We define headings with a #
followed by the text. You can have from 1-6 hashes with one has being the biggest heading and decreasing in size from there.
1# Heading2## Heading3### Heading4#### Heading5##### Heading6###### Heading
1**bold**2 3*italic*
Use -
for bullet points.
For numbered lists just start with 1.
For checklists use - [ ]
1- This will start a bullet point list2- Another item here3 41. This will be a numbered list52. Second item6 7- [ ] This will be a checklist8- [ ] Another item
This will start a bullet point list
Another item here
This will be a numbered list
Second item
[ ] This will be a checklist
[ ] Another item
This is everything you need to get started with markdown. For most documents you won't need to go any further than what was shown above. However, if you would like to further your learning here are some additional resources:
Full guide to markdown syntax: https://www.markdownguide.org/cheat-sheet/
List of tools that support markdown: https://www.markdownguide.org/tools/