見出し1
見出し2
見出し3
見出し4
見出し5
見出し6
これは段落です。イタリック、太字、コード
を含むテキストです。
- リストアイテム1
- リストアイテム2
- ネストされたリストアイテム
- リストアイテム3
- 番号付きリストアイテム1
- 番号付きリストアイテム2
- ネストされた番号付きリストアイテム
- 番号付きリストアイテム3
Steps
-
First Step
- Detail point
- Another detail
-
Second Step
- Important note
- Another note
画像 in table
元画像
画像 in table
元画像 | シェパードのCAM | トラ猫のCAM |
---|
引用ブロック 引用ブロック 引用ブロック 引用ブロック
def median(pool):
'''Statistical median to demonstrate doctest.
>>> median([2, 9, 9, 7, 9, 2, 4, 5, 8])
7
'''
copy = sorted(pool)
size = len(copy)
if size % 2 == 1:
return copy[(size - 1) / 2]
else:
return (copy[size/2 - 1] + copy[size/2]) / 2
if __name__ == '__main__':
import doctest
doctest.testmod()
<article class="prose" bind:this={el}>
{@html html}
</article>
app = FastAPI()
@app.get('/')
async def root():
return { 'message': 'Hello.'}
TH 左寄せ | TH 中央寄せ | TH 右寄せ |
---|---|---|
TD | TD | TD |
TD | TD | TD |
拡張記法
Footnote
Here is a footnote reference,[1] and another.[2]
GitHub alerts
Note
Always include the prose
class when adding a size modifier
KaTeX
インライン式は のようになる。
ブロックは以下の通り