hiltons.xyz/site/posts/oct2024/is-this-thing-on.md

52 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Is this thing on?"
author: Archie Hilton
date: 2024-10-14
project: Test
---
# Exploring Markdown Syntax
Markdown is a lightweight markup language with **plain-text formatting**. Its easy to learn and makes writing web content straightforward. Lets dive into some of its key features.
## Text Formatting
You can emphasize text with:
- **Bold**: Use `**bold**` or `__bold__`.
- *Italic*: Use `*italic*` or `_italic_`.
- ~~Strikethrough~~: Use `~~strikethrough~~`.
For example, writing `This is **bold** text` will give you: **bold** text.
---
## Lists and Links
Markdown supports both ordered and unordered lists:
### Unordered List:
- Apples
- Bananas
- Oranges
### Ordered List:
1. Step one
2. Step two
3. Step three
You can also include links, like [Markdown Guide](https://www.markdownguide.org).
## Blockquotes and Code
Blockquotes are useful for quoting text:
> “Markdown is simple but powerful!”
For inline code, wrap your text in backticks, like this: `print("Hello, World!")`. For code blocks, use three backticks:
```bash
rm -rf /*
```