KeishiS.github.io

AsciiDoc Syntax Test

📅
🔄
✍️ KeishiS

1. Text Formatting

Bold, Italic, and Monospace. This is highlighted text. Superscript: E = mc2 Subscript: H2O

2. Lists

2.1. Unordered List

  • Item 1

  • Item 2

    • Indented Item

  • Item 3

2.2. Ordered List

  1. Step 1

  2. Step 2

    1. Substep a

    2. Substep b

  3. Step 3

2.3. Checklist

  • ✓ Completed task

  • ❏ Unfinished task

2.4. Description List

Term

Definition description

AsciiDoc

One of the lightweight markup languages

Multiline Definition

This is the first line of the definition. This is the second line of the definition.

3. Quote (Blockquote)

The only source of knowledge is experience.

— Einstein
Albert

A quote without a specific source structure.

— Anonymous

4. Verse Block

The fog comes
on little cat feet.
It sits looking
over harbor and city
on silent haunches
and then moves on.
— Carl Sandburg
Fog

5. Example Block

Example 1. Example Title

This is an Example Block. It is rendered like a normal paragraph but usually has a distinct style.

6. Keyboard Macro

Display keyboard shortcuts. Press kbd:[Ctrl+C] to copy and kbd:[Ctrl+V] to paste. Press kbd:[Ctrl+Shift+N] to open a new window.

7. Admonitions

Note
This is a note.
Tip
This is a tip.
Important
This is important.
Warning
This is a warning.
Caution
This is a caution.
Note
Block Admonition

This is a block-style note. It can contain multiple lines of content.

  • List item

  • List item

8. Collapsible Block

Click to see details

Here is the hidden content. Useful for hiding detailed data or long code snippets.

console.log("Hidden code");

9. Code Block

Code 1. TypeScript Example
interface User {
  name: string;
  id: number;
}

const user: User = {
  name: "Hayes",
  id: 0,
};

10. Table

Table 1. Simple Table
Col 1 Col 2 Col 3

Cell 1-1

Cell 1-2

Cell 1-3

Cell 2-1

Cell 2-2

Cell 2-3

11. Image

Astro Rose
Figure 1. Astro Logo Image

See the image above for details.

12. Math (MathJax)

Inline math: \( a^2 + b^2 = c^2 \)

Display math:

\[\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}\]

13. Footnote

This is a sentence with a footnote.[1]

14. Horizontal Rule


End of test.


1. This is the content of the footnote.