Jotting one man's journey through software development, programming, and technology
◀️ Home
Markdown is a lightweight markup language that lets you format text easily. Here are some things that can be done in Markdown:
Use #
for headings (up to six levels).
# Heading 1
## Heading 2
### Heading 3
**Bold Text**
*Italic Text*
~~Strikethrough~~
[Google](https://www.google.com)

> This is a blockquote.
Use `code` to highlight inline code.
```python
print("Hello, World!")
| Column 1 | Column 2 |
|----------|----------|
| Data 1 | Data 2 |
| Data 3 | Data 4 |
- [x] Task 1
- [ ] Task 2
- [ ] Task 3
---
This is a sentence with a footnote.[^1]
[^1]: This is the footnote text.
Use \
before special characters to escape them.
\*Not italicized\*