CodeAlchemy

Jotting one man's journey through software development, programming, and technology


Project maintained by pablogarciaprado Hosted on GitHub Pages — Theme by mattgraham

◀️ Home

Markdown Guide

Markdown is a lightweight markup language that lets you format text easily. Here are some things that can be done in Markdown:

1. Headings

Use # for headings (up to six levels).

# Heading 1
## Heading 2
### Heading 3

2. Bold, Italics, and Strikethrough

**Bold Text**
*Italic Text*
~~Strikethrough~~

3. Lists

[Google](https://www.google.com)

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

5. Blockquotes

> This is a blockquote.

6. Code Blocks & Inline Code

```python
print("Hello, World!")

7. Tables

| Column 1 | Column 2 |
|----------|----------|
| Data 1   | Data 2   |
| Data 3   | Data 4   |

8. Task Lists

- [x] Task 1
- [ ] Task 2
- [ ] Task 3

9. Horizontal Line

---

10. Footnotes

This is a sentence with a footnote.[^1]

[^1]: This is the footnote text.

11. Escaping Special Characters

Use \ before special characters to escape them.

\*Not italicized\*