Contents

Hugoのマークダウン記法

ここではhugoのマークダウン記法を確認していきます。

シンタックスハイライト

バックスラッシュでコードを記載することで対応してもらえる

function myhugodemo(int $a, text $b, array $c):void {
    print $a;
    print $b;
    print $c;
}

ポイント注釈

Note

Highlights information that users should take into account, even when skimming.

Tip

Optional information to help a user be more successful.

Tip

Crucial information necessary for users to succeed.

Warning

Critical content demanding immediate user attention due to potential risks.

Warning

Negative potential consequences of an action.