Heading 1
This is a paragraph after an h1. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Heading 2
This is a paragraph after an h2. Here's some bold text and some italic text and some bold italic text.
Heading 3
This is a paragraph after an h3. Here's some inline code in the middle of a sentence.
Heading 4
This is a paragraph after an h4.
Text Formatting
Here's bold text, italic text, strikethrough, and inline code.
Here's a link to Google and here's an internal link.
Lists
Unordered List
- First item
- Second item
- Third item with bold
- Nested item one
- Nested item two
- Fourth item
Ordered List
- First step
- Second step
- Third step
- Sub-step one
- Sub-step two
- Fourth step
Blockquote
This is a blockquote. It should stand out from the regular text and have some visual distinction.
It can span multiple paragraphs.
Code Blocks
Here's a JavaScript code block:
function cleanNodeModules(projectPath) {
const nodeModules = path.join(projectPath, 'node_modules');
if (fs.existsSync(nodeModules)) {
console.log(`Cleaning: ${nodeModules}`);
fs.rmSync(nodeModules, { recursive: true });
return true;
}
return false;
}
Here's a bash code block:
# Find all node_modules folders
find ~/projects -name "node_modules" -type d -prune
# Check disk usage
du -sh ~/projects/*/node_modules
Tables
| Feature | Free | Pro |
|---|---|---|
| Scanning | ✅ | ✅ |
| Auto-cleanup | ❌ | ✅ |
| Notifications | ❌ | ✅ |
| Priority Support | ❌ | ✅ |
Images
Images would go here if we had any.
Horizontal Rule
Above the rule.
Below the rule.
Task List
- Completed task
- Incomplete task
- Another incomplete task
Final Paragraph
This is the final paragraph to test spacing at the end of the article. It should have appropriate margin from the content above.