--- title: Markdown Examples description: Learn to use Markdown for clean, structured formatting in blogs, docs, and notes. Explore examples, pro tips, and practical use cases to level up your writing and make your content easier to read, share, and maintain across platforms. date: 2025-03-22 tags: ['guide', 'style', 'markdown'] image: /images/blog/markdown-examples.png author: You --- # Markdown Examples ## h2 Heading ### h3 Heading #### h4 Heading ##### h5 Heading ###### h6 Heading ## Emphasis **This is bold text** _This is italic text_ ~~Strikethrough~~ ## Blockquotes > Develop. Preview. Ship. – Vercel ## Lists Unordered - Lorem ipsum dolor sit amet - Consectetur adipiscing elit - Integer molestie lorem at massa Ordered 1. Lorem ipsum dolor sit amet 2. Consectetur adipiscing elit 3. Integer molestie lorem at massa ## Code Inline `code` ```js export default function Nextra({ Component, pageProps }) { return ( <>