LiteNode dark transparent logo Tutorial GitHub logo
▶ Installation

Documentation

Starting
Structuring
Styling
Go Static!
Bonus!

Markdown Cheat Sheet

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Here’s a quick reference to help you get started with Markdown.

Headers

# H1

## H2

### H3

#### H4

##### H5

###### H6

Emphasis

_Italic_
**Bold**
**_Bold and Italic_**

Lists

Unordered List

-   Item 1
-   Item 2
    -   Sub Item 1
    -   Sub Item 2

Ordered List

1. Item 1
2. Item 2
    1. Sub Item 1
    2. Sub Item 2
[Link Text](https://example.com)

Images

![Alt Text](https://example.com/image.jpg)

Blockquotes

> This is a blockquote.

Code

Inline Code

`inline code`

Code Block

```json
{
    "firstName": "John",
    "lastName": "Smith",
    "age": 25
}
```

Tables

| Header 1    | Header 2    |
| ----------- | ----------- |
| Row 1 Col 1 | Row 1 Col 2 |
| Row 2 Col 1 | Row 2 Col 2 |

Horizontal Rules

---

Task Lists

-   [x] Completed Task
-   [ ] Incomplete Task

Including Metadata

Some static site generators allow including metadata in the Markdown files' frontmatter; LiteNode handles it natively:

---
title: "Markdown Cheat Sheet"
description: "Basic guide to mastering Markdown syntax for efficient content creation"
tags: ["Markdown Syntax"]
---

By mastering these Markdown basics, you'll be able to create well-structured and formatted content efficiently.

Content