Markdown Sample Article

Markdown Sample Article

·Gavin & Sam·

Heading 1

Heading 2 Texts


Heading 3 Paragraphs

This is a paragraph. Paragraphs are separated by blank lines.
This line has a line break at the end (using two spaces).
This is another paragraph.


Heading 3 Emphasis

Italic text
Italic text using underscores
Bold text
Bold text using underscores
Bold and italic text
Strikethrough text


Heading 2 Lists

Heading 3 Unordered Lists

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Heading 3 Ordered List

  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item

Heading 2 Blockquotes

Heading 3 Links and Images

Markdown Guide
Markdown Logo


Heading 2 Code

Inline code: print("Hello, World!")

Code block:

def greet():
    print("Hello, World!")

Heading 1 Tables

Basic Table

NameAgeOccupation
John Doe28Software Engineer
Jane Smith34Data Scientist
Alice Brown22Student

Table with Alignment

Left-AlignedCenter-AlignedRight-Aligned
Item 1Item 2Item 3
Data AData BData C
Example 1Example 2Example 3

Table with Merged Cells (using HTML)

<table> <tr> <th>Category</th> <th colspan="2">Details</th> </tr> <tr> <td>Fruits</td> <td>Apple</td> <td>Banana</td> </tr> <tr> <td>Vegetables</td> <td>Carrot</td> <td>Broccoli</td> </tr> </table>

Table with Emojis and Links

EmojiDescriptionLink
🐧PenguinLinux
🚀RocketSpaceX
🌍EarthNASA

Table with Code

LanguageCode Example
Pythonprint("Hello")
JavaScriptconsole.log("Hi")
HTML<h1>Title</h1>

Table with Task List

TaskStatus
Write report
Review code
Test project

Heading 1 Summary

  • Test
  • Test