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.