Markdown Guide
Learn how to create beautiful, effective announcements using Markdown formatting.
Markdown Examples
Here are examples showing the raw markdown code alongside the rendered output:
Bold Text
Use double asterisks around text to make it bold.
Markdown Input:
Make text **bold** for emphasis.
Rendered Output:
Italic Text
Use single asterisks around text to make it italic.
Markdown Input:
Make text *italic* for subtle emphasis.
Rendered Output:
Combined Formatting
Use triple asterisks for both bold and italic.
Markdown Input:
You can combine ***bold and italic*** formatting.
Rendered Output:
Headers
Use # symbols to create headers. More # symbols = smaller headers.
Markdown Input:
# Main Title
## Section Header
### Subsection
Rendered Output:
Bulleted Lists
Use dashes (-) to create bulleted lists.
Markdown Input:
- First item
- Second item
- Third item
Rendered Output:
Numbered Lists
Use numbers followed by periods to create numbered lists.
Markdown Input:
1. First step
2. Second step
3. Third step
Rendered Output:
Links
Put link text in brackets followed by URL in parentheses.
Markdown Input:
[Click here](https://locallygrown.net)
Rendered Output:
Inline Code
Use backticks around text to format it as code.
Markdown Input:
Use the `npm install` command.
Rendered Output:
Code Blocks
Use triple backticks to create code blocks.
Markdown Input:
```
npm run dev
npm run build
npm test
```
Rendered Output:
Important Callouts
Use > to create blockquotes for important callouts.
Markdown Input:
> **Important:** Please read this carefully before proceeding.
Rendered Output:
Tables
Use pipes (|) to separate columns and dashes to create table headers.
Markdown Input:
| Feature | Status |
|---------|--------|
| Shopping | Active |
| Checkout | Beta |