A Quick Introduction to Markdown

Markdown is a lightweight markup language used to format text. It's widely used for documentation, blogging, and online writing because it’s both human-readable and easy to learn.

Here’s a quick guide to the basics:


Headers

Use # symbols before your text to create headers. The number of #s determines the level.

# H1 - Main Title  
## H2 - Section Title  
### H3 - Subsection

Emphasis

*Italic* or _Italic_  
**Bold** or __Bold__  
***Bold and italic***

Lists

Unordered list:

- Item one  
- Item two  
  - Sub-item

Ordered list:

1. First item  
2. Second item  
   1. Nested item

Links

[Link text](https://example.com)

Code

Inline code:

Use `backticks` for inline code.

Code blocks:

```
function hello() {
  console.log("Hello, world!");
}
```

Blockquotes

> This is a blockquote.  
> Great for quoting text or adding callouts.

That's it! With just these few tools, you can structure clean and readable posts. Markdown keeps your writing simple and your formatting flexible.

NOTICE: DEADLIGHT DOES NOT CURRENTLY SUPPORT IMAGES

however it is open source, so feel free to add your own!