Asciidocのクイックリファレンス

目次

Keybord

マクロを使用するには、ドキュメントヘッダーにexperimental属性を指定します。

kbd:[Ctrl+T]

Ctrl+T

Menu

menu:View[Zoom > Reset]

View  Zoom  Reset

Image

image::/images/yuu0024-009.jpg[景色]
景色

CSV

[format="csv", options="header"]
|===
アーティスト,トラック,ジャンル
Baauer,Harlem Shake,Hip Hop
The Lumineers,Ho Hey,Folk Rock
|===

[format="csv", options="header"]
|===
見出し1,見出し2,見出し3
りんご,100円,100g
|===
アーティスト トラック ジャンル

Baauer

Harlem Shake

Hip Hop

The Lumineers

Ho Hey

Folk Rock

見出し1 見出し2 見出し3

りんご

100円

100g

テキスト置換

(C)
(R)
=>

© ® ⇒

Syntax Highlighting

const hoge = 'Hello world.'
console.log(hoge);
$hoge = [];
if (empty($hoge)) {
  print_r('ok')
}

Emoji

emoji:heart[]
An emoji 5x the size emoji:bear[5x]

An emoji 5x the size

Charts

January,February,March
28,48,40
65,59,80

PlantUML

actor ユーザー as user
user -> ログイン : ログインする
ログイン --> user:
シーケンス図
Figure 1. シーケンス図
class Animal {
  int age
  run()
}

class Cat extends Animal {
}

class Dog extends Animal {
}
クラス図
Figure 2. クラス図