A Journey Through Markdown
Main Heading
This is a sample post to demonstrate all the markdown features available in our digital book. Let’s explore the various formatting options.
Text Formatting
Here’s some bold text and italic text. We can also have bold and italic text together.
This is a blockquote. It’s perfect for highlighting important quotes or thoughts.
It can span multiple lines and maintain its formatting.
Lists
Unordered list:
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered list:
- First step
- Second step
- Sub-step
- Another sub-step
- Third step
Code Blocks
Inline code: const greeting = "Hello, World!";
// Code block with syntax highlighting
function calculateTotal(items) {
return items.reduce((sum, item) => {
return sum + item.price;
}, 0);
}
Links and Images

Tables
| Feature | Description | Example |
|---|---|---|
| Bold | Makes text bold | **bold** |
| Italic | Makes text italic | *italic* |
| Code | Shows code | `code` |
Horizontal Rule
Task Lists
- Completed task
- Pending task
- Another task
Footnotes
Here’s a sentence with a footnote1.
Mathematical Equations
Inline equation: $E = mc^2$
Block equation: $$ \frac{d}{dx}(x^n) = nx^{n-1} $$
Callouts
::: tip This is a tip callout. Use it for important information. :::
::: warning This is a warning callout. Use it for cautionary notes. :::
::: note This is a note callout. Use it for additional information. :::
Definition Lists
Term : Definition of the term
Another term : Another definition
Abbreviations
*[HTML]: Hyper Text Markup Language *[CSS]: Cascading Style Sheets
The HTML and CSS are fundamental web technologies.
Keyboard Input
Press Ctrl + C to copy.
Highlight
==This text is highlighted==
Subscript and Superscript
H2O is water, and E=mc^2^ is Einstein’s equation.
Comments
Custom Containers
::: details Click to expand This is a collapsible section. Click to expand or collapse. :::
Emoji Support
:smile: :heart: :rocket:
Blockquotes with Citations
The best way to predict the future is to invent it.
— Alan Kay
Multiple Images
Video Embed
Audio Embed
Custom HTML
Inline HTML
This text is red
Line Breaks
This is the first line.
This is the second line.
Escaping Characters
* This is not italic *
Raw HTML
Click to expand
This is raw HTML content.Tags
#markdown #formatting #guide #technology
Footnotes
-
This is the footnote content. ↩