Styling Reference

This post is useful to see how different markdown elements look like when styled.

Author: luxmiyu

styling.md

Date: July 15, 2025

Go Back Lorem Ipsum ›

This blog post is here for testing purposes. It serves as a preview for all of the different Markdown elements and how they’re styled. Whether it’s headers, lists, code blocks, blockquotes, images, or inline formatting, this page is meant to demonstrate how each component will appear within the blog’s design system. It acts as a visual reference for consistency across posts, helping ensure that the typography, spacing, and overall presentation remain clean and readable. This file is especially useful during theme development or when tweaking the CSS, making it easier to spot unintended changes or styling regressions.


Blockquotes

📄 Note

Useful information that users should know, even when skimming content.

ℹ️ Tip

Helpful advice for doing things better or more easily.

✅ Important

Key information users need to know to achieve their goal.

🚨 Warning

Urgent info that needs immediate user attention to avoid problems.

⚠️ Caution

Advises about risks or negative outcomes of certain actions.

And this is what a regular blockquote looks like:

Bunch of stuff you can put in here, like a table!

IDNameSurnameRoleStatus
001AliceSmithDeveloperActive
002BobJonesDesignerInactive
003CarolLeeProject MgrActive
004DanBrownQA TesterPending

Or maybe a code block?

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, world!");
    }
}

H2 Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

H3 Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

H4 Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit.


Emphasis

Regular text | Italic text | Bold text | Bold and italic text | Strikethrough


Lists

Unordered List

  • Item 1
    • Subitem 1
      • Sub-subitem
  • Item 2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Nested item
    2. Nested item
  3. Third item

Inline link
Reference link


Tables

A simple table:

Student AStudent B
AliceBob
CarolDan

With different alignments:

No AlignRight AlignCenter AlignLeft Align
Cell A1Cell B1Cell C1Cell D1
Cell A2Cell B2Cell C2Cell D2
Cell A3Cell B3Cell C3Cell D3
Cell A4Cell B4Cell C4Cell D4

With in-line code:

LanguageCode
Pythonprint('hello, world!')
JavaScriptconsole.log('hello, world!')
Gofmt.Println("hello, world!")

With images:

Column AColumn B
GenericLorem ipsum dolor sit amet, consectetur adipiscing elit. Cras mollis risus eget metus ultricies, eget egestas lectus luctus. Sed sed enim sit amet dui efficitur blandit. Quisque vitae convallis erat. Aenean ullamcorper erat nec commodo sollicitudin.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras mollis risus eget metus ultricies, eget egestas lectus luctus. Sed sed enim sit amet dui efficitur blandit. Quisque vitae convallis erat. Aenean ullamcorper erat nec commodo sollicitudin.Generic

Code

Print stuff to console with console.log(), as you can see in the TypeScript code below:

class Dog {
  constructor(name: string) {
    this.name = name;
  }

  bark() {
    console.log(`${this.name} barks!`);
  }
}

const myDog = new Dog("Fido");
myDog.bark(); // Output: "Fido barks!"

Images

Generic

Generic

Author: luxmiyu

styling.md

Date: July 15, 2025

Go Back Lorem Ipsum ›