Markdown🔗
Markdown is a way of writing plain text with ~style~. This Blog is made by converting Markdown files (.md
) to HTML content (with a bit of React sparkle)
Organization and emphasis increase readability, and the format is widely accepted.
It's the Rich Text Markup of choice for Github README files. Examples here include 'Github Flavored Markdown' where noted.
Similar in principal, but much less daunting than Org Mode
Headers🔗
Output:🔗
Header 1🔗
Header 2🔗
Header 3🔗
Header 6🔗
Input:🔗
Line Break🔗
Output:🔗
Input🔗
Markdown | |
---|---|
Code🔗
Fenced (Github Flavored Markdown)🔗
Output:🔗
Input:🔗
Text Only | |
---|---|
1 2 3 4 5 |
|
Inline (Generic Markdown)🔗
Output:🔗
do_the_things(['one', 'two', 'three'])
Input:🔗
Markdown | |
---|---|
Bold and Italics🔗
Output:🔗
Italic Text
Bold Text
~~Striked-Through Text~~
Italic And Bold Text
Bold And Italic Text
Input:🔗
Markdown | |
---|---|
Quotes🔗
Output:🔗
As Abraham Lincoln said:
Don't believe what you read on the internet. That stuff can be dangerous.
Input:🔗
Markdown | |
---|---|
Lists🔗
Output:🔗
Ordered
- First Order
- Second Ordered
- Still Ordered
Unordered
- Unordered Item
- Another Item
- A third Item
Input:🔗
NOTE: Can use just "1." or incrementing numbers, or one "1." then "-"
Markdown | |
---|---|
Links🔗
Output:🔗
Displayed Text As Link to /markdown
Input:🔗
Markdown | |
---|---|
Tables (Github Flavored Only)🔗
Output:🔗
Column Name | Other Column | ID |
---|---|---|
Text | omgwtfbbq | 1 |
Number | 1234 | 2 |
Input:🔗
Markdown | |
---|---|
Created: June 7, 2023