Basic concepts of blockquote

Published: (December 27, 2025 at 06:15 PM EST)
2 min read
Source: Dev.to

Source: Dev.to

Introduction

Blockquotes are essential for structuring, clarifying, and emphasizing content in writing. They can be used for quotations, notes, warnings, code snippets, lists, and more.

Basic Syntax

This is a simple blockquote.
First paragraph.
Second paragraph.

Formatting Inside Blockquotes

Bold, Italic, and Combined

This text is bold inside a blockquote.
This text is italic inside a blockquote.
Bold and italic can be combined in blockquotes.

Inline Code

You can write inline code like let x = 10; inside a blockquote.

You can include links: Markdown Guide

Emojis

Emojis add a fun or emphatic touch: 😄 🚀 💡 🎉

Images

Images can be included in blockquotes for visual explanation.
Example Image

Nested Blockquotes

Outer quote

Inner quote

Innermost quote

Dialogue example:

Alice: Did you finish the report?
Bob: Almost, I need one more section.
Alice: Make sure to double‑check numbers.

Lists Inside Blockquotes

Shopping:

  • Apples
  • Bananas
  • Oranges

Tasks:

  • Homework
  • Exercise
  • Reading

Project A:

  • Task 1
  • Task 2

Project B:

  • Task 1
  • Task 2

Code Blocks Inside Blockquotes

Use triple backticks for larger code examples:

function hello() {
  return "Hello World!";
}

Another example:

function helloWorld() {
  return "Hello!";
}

Inline command examples:

npm install package
npm start
npm test

Quotations with Citations

“Education is the most powerful weapon which you can use to change the world.” – Nelson Mandela

“Life is what happens when you’re busy making other plans.” – John Lennon

Warnings and Tips

⚠️ Warning: Do not delete system files.

💡 Tip: Nested blockquotes are great for showing dialogue or step‑by‑step instructions.

Step‑by‑Step Instructions

Steps:

  1. Open the file.
  2. Edit the content.
  3. Save changes.

Detailed Procedure:

  1. Open editor.
  2. Write code.
  3. Test code.
    Note: Always save your work frequently.

To‑Do List

  • Finish report
  • Review notes
  • Send email

Long Blockquote Example

This is a very long quote that spans multiple lines, allowing for explanations and details within the same blockquote.

😂 Emojis, jokes, or short dialogues work perfectly in blockquotes.

Blockquotes are perfect for teaching concepts, showing quotes, code, warnings, or step‑by‑step instructions.

Back to Blog

Related posts

Read more »

You can make up HTML tags

Article URL: https://maurycyz.com/misc/make-up-tags/ Comments URL: https://news.ycombinator.com/item?id=46416945 Points: 37 Comments: 11...