Markdown Style Guide for DevPulse
A reference for all supported Markdown and MDX elements in this blog, with live examples.
D
Deepak
Ad Slot
This post serves as a reference and style guide for all Markdown and MDX features supported on this blog.
Headings
Use # through ###### for h1 through h6.
Paragraphs
Paragraphs are separated by a blank line. Wrap any span of text with **double stars** for bold, and _underscores_ for italic text.
Blockquotes
“The best code is no code at all.” — Jeff Atwood
Blockquotes can contain multiple paragraphs and other elements.
Lists
Unordered
- Item one
- Item two
- Nested item
- Another nested
- Item three
Ordered
- First item
- Second item
- Third item
Code
Inline code: const greeting = 'hello'
Fenced code blocks with syntax highlighting:
// A sample function
function greet(name) {
return `Hello, ${name}!`;
}
Tables
| Column A | Column B | Column C |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Horizontal Rule
Links
Astro Documentation — external links open safely.
Images
Images are automatically optimized by Astro’s <Image> component.
Ad Slot