Markdown Basics
Introduction
This page serves as a reference guide to the Markdown syntax used for creating different elements in your micro-site. You can use this guide to populate your micro-site with various content elements.
Headers
Use hash symbols (#) for headers. The number of hashes indicates the header level.
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Text Formatting
Italic Text
Bold Text
Strikethrough Text
Links
Lists
Unordered List:
- Item 1
- Item 2
- Item 3
Ordered List:
- First Item
- Second Item
- Third Item
Images
Blockquotes
This is a blockquote.
Code Blocks
Inline code: code here
Code Block:
`python
def hello():
print("Hello, World!")
\
`
Horizontal Lines
Tables
Header 1 | Header 2 |
---|---|
Content 1 | Content 2 |
Footnotes
This is a sentence with a footnote.1
-
This is the footnote content. ↩