Post

first post

この投稿では、マークダウンがどのようにレンダリングされるのかをテストします。通常のマークダウン記法に加え、JekyllテーマのChirpy固有の記法も含みます。

h1h1h1

Lorem ipsum dolor sit, amet consectetur adipisicing elit.

h2h2h2

h3h3h3

h4h4h4h4

インライン記法

  • strongボールド
  • emイタリック
  • strike打消し線
  • ^^highlight^^、^^ハイライト^^ (ハイライトはできない)
  • \[E = mc^2\]
  • inline code
  • link

画像

Alt text

Alt text

リスト

  • aaa
  • bbb
    • ccc
    • ddd
  • eee

番号付きリスト

  1. 111
  2. 222
    1. 333
    2. 444
  3. 555

コードブロック

1
2
3
4
from pathlib import Path

p = Path(rf"{123}456.png")
print(f"p: {p}")  # this code means nothing
1
jekyll build --future

Example line for prompt.

Example line for prompt.

Example line for prompt.

Example line for prompt.

This post is licensed under CC BY 4.0 by the author.