🐾 Little kitty's lil home 🐾

Go back

Markdown Style Guide

This post showcases the various Markdown styling options available in this blog.

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Text Formatting

This is bold text, this is italic text, and this is strikethrough.

This is a link to Astro.

Lists

Unordered List

Ordered List

  1. First step
  2. Second step
  3. Third step

Code

Inline code: const hello = "world"

Code block:

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('Astro'));

Blockquotes

This is a blockquote. It can span multiple lines.

Horizontal Rule


Tables

FeatureSupported
Headings
Lists
Code
Tables

That’s a quick overview of Markdown styling!


Share this post on:

Previous Post
Welcome to My Blog