asterisks

Markdown Style Guide for DevPulse

A reference for all supported Markdown and MDX elements in this blog, with live examples.

D
Deepak
4 min read
Ad Slot
Markdown Style Guide for DevPulse

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

  1. First item
  2. Second item
  3. 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 AColumn BColumn C
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Horizontal Rule


Astro Documentation — external links open safely.

Images

Images are automatically optimized by Astro’s <Image> component.

Ad Slot