#atom

Subtitle:

Lightweight markup language for creating formatted text using plain text


Core Idea:

Markdown is a simple plain text formatting syntax designed to be easily readable by humans and convertible to HTML and other rich text formats, making it ideal for content creation and documentation.


Markdown Syntax Cheatsheet

Basic Formatting

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

**Bold text**
*Italic text*
***Bold and italic text***
~~Strikethrough~~

> Blockquote
> Multiple lines

`Inline code`

```code block```
or
    Code block with 4 spaces indentation

---
(Horizontal rule)

Lists

- Unordered list item
- Another item
  - Nested item
  - Another nested item

1. Ordered list item
2. Second item
   3. Nested ordered item
   4. Another nested item
[Link text](https://example.com)
[Link with title](https://example.com "Title text")

![Alt text for image](image-url.jpg)
![Alt text](image-url.jpg "Image title")

Tables

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

| Left-aligned | Center-aligned | Right-aligned |
|:-------------|:--------------:|--------------:|
| Left         | Center         | Right         |

Other Elements

Footnote reference [^1]
[^1]: Footnote content

Task list:
- [x] Completed task
- [ ] Incomplete task

Definition list:
Term
: Definition

Connections:


References:

  1. Primary Source:
    • John Gruber's original Markdown specification
  2. Additional Resources:
    • CommonMark specification for standardized Markdown

Tags:

#markdown #writing #content-creation #documentation #markup


Connections:


Sources: