All markdown test | Flyfish's Playground

Flyfish's Playground

All markdown test

Markdown Test Document

Table of Contents

  1. Introduction
  2. Headings
  3. Paragraphs and Text Styles
  4. Lists
  5. Links and Images
  6. Code
  7. Blockquotes
  8. Tables
  9. Horizontal Line

Introduction

This is a test document to demonstrate various Markdown features. Markdown is a lightweight markup language that you can use to format text. It’s easy to read and write!


Headings

Headings are created using the # symbol. The number of # characters corresponds to the heading level.

This is a Level 3 Heading

This is a Level 4 Heading

This is a Level 5 Heading

Paragraphs and Text Styles

You can create bold text by surrounding text with double asterisks (**bold**) or double underscores (__bold__).

Italiacs are created with single asterisks (*italic*) or single underscores (_italic_).

You can also combine bold and italic.

Strikethrough text is created by surrounding text with two tildes (~~strikethrough~~).


Lists

Unordered List

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

Ordered List

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

You can add links in Markdown.

Images are similar to links but start with an exclamation mark:

Sample Image


Code

You can add inline code by surrounding text with backticks.

To create a block of code, use three backticks (```) or indent the lines with four spaces:

console.log("Hello, world!");