Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created March 1, 2025 20:54
Show Gist options
  • Save guitarrapc/bacff4b9a2209ef099a5206e52049e60 to your computer and use it in GitHub Desktop.
Save guitarrapc/bacff4b9a2209ef099a5206e52049e60 to your computer and use it in GitHub Desktop.
Test markdown output with common format
マークダウンの表示用テキスト
# 見出し1
## 見出し2
### 見出し3
#### 見出し4
## 文字装飾
これは装飾なしの文字です。
*これは斜体の文章です。*
**これは太字の文章です。**
~~これは打ち消し線~~を含む文章です。
これはインラインコード`Enumerable.Range(1, 10);`を含む文章です。
以下の文字は表示されません.
<!--
表示されない
-->
この下が水平線
---
この上が水平線
detailsタグの利用
<details><summary>詳細を表示</summary>
詳細はここ
</details>
## リスト
番号付きリスト
1. foo
2. bar
1. okonomi
1. kaisen
* 箇条書きを混ぜる
箇条書きリスト
* foo
* bar
- okonomi
- kaisen
1. 数字を混ぜる
チェックボックス
* [ ] 未完了
* [x] 完了
## テーブル
| 無指定 | 左寄せ | 真ん中 | 右寄せ |
| --- | :--- | :---: | ----: |
| 1 || 3 ||
| 1 | 2 || 3 |
| 1 ||| 4 |
| aaaaaaaaaa | bbbbbbbbb | cccccccccc | dddddddddd |
### コードブロック
Go
```go
package main
import (
"fmt"
"time"
)
func say(s string) {
for i := 0; i < 5; i++ {
time.Sleep(100 * time.Millisecond)
fmt.Println(s)
}
}
func main() {
go say("world")
say("hello")
}
```
C#
```cs
Task.Run(() => Say("world"));
Say("hello");
static void Say(string s)
{
for (int i = 0; i < 5; i++)
{
Thread.Sleep(100);
Console.WriteLine(s);
}
}
```
Mermaid
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment