4 min read
Style Showcase (Dev Only)
A comprehensive showcase of all available markdown styles and components

Style Showcase

This page showcases all the available markdown styles and components currently supported.

Typography

Headings

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Styles

This is bold text and this is italic text. You can also use bold and italic together.

Here’s some inline code in a sentence.

Strikethrough text

Correction Syntax

This is a mistake correction in the text. You can use multiple corrections in a sentence: I love programing programming and writting writing code.

Here’s a link to example.com and here’s an internal link.

Lists

Unordered List

  • First item
  • Second item
  • Third item
    • Nested item 1
    • Nested item 2
  • Fourth item

Ordered List

  1. First step
  2. Second step
  3. Third step
    1. Nested step A
    2. Nested step B
  4. Fourth step

Task List

  • Completed task
  • Incomplete task
  • Another completed task

Blockquotes

This is a blockquote. It can span multiple lines.

And even have multiple paragraphs.

Note: You can also have styled content inside blockquotes.

Code Blocks

JavaScript

function greet(name) {
  console.log(`Hello, ${name}!`);
  return true;
}

greet("World");

TypeScript

interface User {
  name: string;
  age: number;
}

const user: User = {
  name: "Jorge",
  age: 30
};

CSS

.example {
  color: blue;
  font-size: 16px;
  padding: 1rem;
}

.example:hover {
  color: red;
}

Bash

npm install package-name
pnpm add package-name
cd my-directory

Tables

FeatureSupportedNotes
BoldUse **text**
ItalicUse *text*
CodeUse `code`
CorrectionsUse ~~old~~(new)

Horizontal Rules


Images

Alt text for image

Inline HTML

You can also use inline HTML when needed, though it’s better to use markdown syntax when possible.

Combinations

You can combine different styles together:

  • Bold with code
  • Italic with links
  • Strikethrough Correction with bold
  • Lists with mistakes corrections

Complex Examples

Here’s a complex paragraph with multiple styles: I was really excited about writting writing this amazing code that would revolutionize the way we think about programing programming. It’s important to remember that persistence and creativity go hand in hand.

Code with Explanations

When working with JavaScript, you might use:

const items = [1, 2, 3, 4, 5];
const doubled = items.map(x => x * 2);
console.log(doubled); // [2, 4, 6, 8, 10]

This demonstrates:

  1. Array declaration
  2. The map function(The map() method)
  3. Arrow function syntax
  4. Console output

Nested Structures

Tip: Here’s a blockquote with a list inside:

  • First tip
  • Second tip with error correction
  • Third tip with code
// Even code blocks!
const example = "nested";

Special Characters

Testing special characters: & < > ” ’ @ # $ % ^ * ( ) - _ = + [ ] { } | \ / ? . , ; :

End Note

This showcase demonstrates all the curent current styling capabilities. Feel free to add more examples as new features are implemented!


Let's Connect

If you want to get in touch with me about something or just to say hi, reach out on social media or send me an email. You can also use the information from llms.txt and llms-full.txt to connect my information to your AI.