Loading...
Loading...
An introduction to Markdown syntax for creating formatted text
Markdown is a lightweight markup language with plain-text formatting syntax. It is commonly used for writing content that will be converted to HTML for web publication. Here are the basics of Markdown syntax:
Use #
to create headings. The number of #
symbols indicates the heading level (1-6).
Example:
# Heading 1
## Heading 2
### Heading 3
**Bold Text**
_Italic Text_
~~Strikethrough~~
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
1. First item
2. Second item
Links: [Link Text](website-link)
Images: ![Alt Text](image-link)
code
to format inline code.