KeishiS.github.io

AsciiDoc Syntax Test

📅
🔄
✍️ KeishiS

Text Formatting

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

Lists

Unordered List

  • Item 1
  • Item 2
    • Indented Item
  • Item 3

Ordered List

  1. Step 1
  2. Step 2
    1. Substep a
    2. Substep b
  3. Step 3

Checklist

  • Completed task
  • Unfinished task

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.

Quote (Blockquote)

The only source of knowledge is experience.

— Einstein Albert

A quote without a specific source structure.

— Anonymous

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

Example Block

Example 1. Example Title

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

Keyboard Macro

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

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.

Block Admonition

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

  • List item
  • List item

Collapsible Block

Click to see details

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

console.log("Hidden code");

Code Block

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

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

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

Image

Astro Rose
Figure 1. Astro Logo Image

See the image above for details.

Math (MathJax)

Inline math: a^2 + b^2 = c^2

Display math:

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

Footnote

This is a sentence with a footnote 1.

Horizontal Rule


End of test.

  1. This is the content of the footnote.