Welcome to the Markdown guide for the Coding Bootcamp! Markdown is a lightweight markup language with plain-text formatting syntax. It is used to format text, images, and links on websites and blogs.
Basic Formatting
- Bold:
**text**
or text - Italic:
*text*
or text - Strikethrough:
~~text~~
- Code:
text
or ``text``
Lists
- Ordered List:
- Item 1
- Item 2
- Item 3
- Unordered List:
- Item 1
- Item 2
- Item 3
Links and Images
- Internal Link
- External Link
- Image
- Markdown
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
Emoji
:smile:, :heart:, :tada:
For more information and resources on Markdown, check out our Markdown Resources page.