# 目次



## Table of


@{toc}  

![image.png](/attachment/68239f01c6f7c79a7557d8c4)




``` drawio

    <mxGraphModel dx="1402" dy="797" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
      <root>
        <mxCell id="0"/>
        <mxCell id="1" parent="0"/>
        <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
          <mxGeometry x="350" y="380" width="120" height="60" as="geometry"/>
        </mxCell>
      </root>
    </mxGraphModel>
  
```
# :pencil: Block Elements
**1. p**
2. p

[aaaaa](bb)

| col1 | col2 | col3 |
| ---- | ---- | ---- |
| a    | q    | a    |
| test | 田中 |      |

## Headers 見出し

先頭に`#`をレベルの数だけ記述します。

# 見出し1
## 見出し2
### 見出し3
#### 見出し4
##### 見出し5
###### 見出し6

```
# 見出し1
## 見出し2
### 見出し3
#### 見出し4
##### 見出し5
###### 見出し6
```

## Block 段落

空白行を挟むことで段落となります。aaaa

```
段落1
(空行)
段落2
```

段落1

段落2

## Br 改行

改行の前に半角スペース`  `を2つ記述します。
***この挙動は、オプションで変更可能です***

```
hoge
fuga(スペース2つ)
piyo
```

hoge
fuga  
piyo

## Blockquotes 引用

先頭に`>`を記述します。ネストは`>`を多重に記述します。

```
> 引用
> 引用
>> 多重引用
```

> 引用
> 引用
>> 多重引用

## Code コード

`` `バッククオート` `` 3つ、あるいはダッシュ`~`３つで囲みます。

### シンタックスハイライトとファイル名

- [highlight.js Demo](https://highlightjs.org/static/demo/) の common カテゴリ内の言語に対応しています


~~~
```javascript:mersenne-twister.js
function MersenneTwister(seed) {
  if (arguments.length == 0) {
    seed = new Date().getTime();
  }

  this._mt = new Array(624);
  this.setSeed(seed);
}
```
~~~

```javascript:mersenne-twister.js
function MersenneTwister(seed) {
  if (arguments.length == 0) {
    seed = new Date().getTime();
  }

  this._mt = new Array(624);
  this.setSeed(seed);
}
```



### インラインコード

`` `バッククオート` `` で単語を囲むとインラインコードになります。

```
これは `インラインコード`です。
```

これは `インラインコード`です。

## pre 整形済みテキスト

半角スペース4個もしくはタブで、コードブロックをpre表示できます

```
    class Hoge
        def hoge
            print 'hoge'
        end
    end
```

    class Hoge
        def hoge
            print 'hoge'
        end
    end

## Hr 水平線

アンダースコア`_` 、アスタリスク`*`を3つ以上連続して記述します。

```
***
___
---
```

***
___
---
********************************************************************************


# :pencil: Typography

## 強調
### em

アスタリスク`*`もしくはアンダースコア`_`1個で文字列を囲みます。

```
これは *イタリック* です
これは _イタリック_ です
```

これは *イタリック* です
これは _イタリック_ です

### strong

アスタリスク`*`もしくはアンダースコア`_`2個で文字列を囲みます。

```
これは **ボールド** です
これは __ボールド__ です
```

これは **ボールド** です
これは __ボールド__ です

### em + strong

アスタリスク`*`もしくはアンダースコア`_`3個で文字列を囲みます。

```
これは ***イタリック＆ボールド*** です
これは ___イタリック＆ボールド___ です
```

これは ***イタリック＆ボールド*** です
これは ___イタリック＆ボールド___ です

# :pencil: Images

`![Alt文字列](URL)` で`<img>`タグを挿入できます。

```markdown
![Minion](https://octodex.github.com/images/minion.png)
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
```

![Minion](https://octodex.github.com/images/minion.png)
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")

画像の大きさなどの指定をする場合はimgタグを使用します。

```html
<img src="https://octodex.github.com/images/dojocat.jpg" width="200px">
```

<img src="https://octodex.github.com/images/dojocat.jpg" width="200px">



# :pencil: Link

## Markdown 標準

`[表示テキスト](URL)`でリンクに変換されます。

```
[Google](https://www.google.co.jp/)
```

[Google](https://www.google.co.jp/)

## Crowi 互換

```
[/Sandbox]
&lt;/user/admin1>
```

[/Sandbox]
</user/admin1>

## Pukiwiki like linker

(available by [weseek/growi-plugin-pukiwiki-like-linker
](https://github.com/weseek/growi-plugin-pukiwiki-like-linker) )

最も柔軟な Linker です。
記述中のページを基点とした相対リンクと、表示テキストに対するリンクを同時に実現できます。

```
[[./Bootstrap3]]
Bootstrap3のExampleは[[こちら>./Bootstrap3]]
```

 [[../user]]
Bootstrap3のExampleは[[こちら>./Bootstrap3]]

# :pencil: Lists

## Ul 箇条書きリスト

ハイフン`-`、プラス`+`、アスタリスク`*`のいずれかを先頭に記述します。
ネストはタブで表現します。

```
- リスト1
    - リスト1_1
        - リスト1_1_1
        - リスト1_1_2
    - リスト1_2
- リスト2
- リスト3
```

- リスト1
    - リスト1_1
        - リスト1_1_1
        - リスト1_1_2
    - リスト1_2
- リスト2
- リスト3

## Ol 番号付きリスト

`番号.`を先頭に記述します。ネストはタブで表現します。
番号は自動的に採番されるため、すべての行を1.と記述するのがお勧めです。

```
1. 番号付きリスト1
    1. 番号付きリスト1-1
    1. 番号付きリスト1-2
1. 番号付きリスト2
1. 番号付きリスト3
```

1. 番号付きリスト1
    1. 番号付きリスト1-1
    1. 番号付きリスト1-2
1. 番号付きリスト2
1. 番号付きリスト3


## タスクリスト

```
- [ ] タスク 1
    - [x] タスク 1.1
    - [ ] タスク 1.2
- [x] タスク2
```

- [ ] タスク 1
    - [x] タスク 1.1
    - [ ] タスク 1.2
- [x] タスク2


# :pencil: Table

## Markdown 標準

```markdown
| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This       | This        | This         |
| column     | column      | column       |
| will       | will        | will         |
| be         | be          | be           |
| left       | right       | center       |
| aligned    | aligned     | aligned      |

OR

Left align | Right align | Center align
:--|--:|:-:
This       | This        | This
column     | column      | column
will       | will        | will
be         | be          | be
left       | right       | center
aligned    | aligned     | aligned
```

| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This       | This        | This         |
| column     | column      | column       |
| will       | will        | will         |
| be         | be          | be           |
| left       | right       | center       |
| aligned    | aligned     | aligned      |

## TSV (crowi-plus 独自記法)

```
::: tsv
Content Cell 	Content Cell
Content Cell 	Content Cell
:::
```

::: tsv
Content Cell	Content Cell
Content Cell	Content Cell
:::

## TSV ヘッダ付き (crowi-plus 独自記法)

```
::: tsv-h
First Header	Second Header
Content Cell	Content Cell
Content Cell	Content Cell
:::
```

::: tsv-h
First Header	Second Header
Content Cell	Content Cell
Content Cell	Content Cell
:::

## CSV (crowi-plus 独自記法)

```
::: csv
Content Cell,Content Cell
Content Cell,Content Cell
:::
```

::: csv
Content Cell,Content Cell
Content Cell,Content Cell
:::

## CSV ヘッダ付き (crowi-plus 独自記法)

```
::: csv-h
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
:::
```

::: csv-h
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
:::


# :pencil: Footnote

脚注への参照[^1]を書くことができます。また、インラインの脚注^[インラインで記述できる脚注です]を入れる事も出来ます。

長い脚注は[^longnote]のように書くことができます。[^5]


[^1]: 1つめの脚注への参照です。
[^5]: 1つめの脚注への参照です。hoge

[^longnote]: 脚注を複数ブロックで書く例です。

    後続の段落はインデントされて、前の脚注に属します。


# :pencil: Emoji
:
See [emojione](https://www.emojione.com/)

:smiley: :smile: :laughing: :innocent: :drooling_face:

:family: :family_man_boy: :family_man_girl: :family_man_girl_girl: :family_woman_girl_girl:

:thumbsup: :thumbsdown: :open_hands: :raised_hands: :point_right:

:apple: :green_apple: :strawberry: :cake: :hamburger:

:basketball: :football: :baseball: :volleyball: :8ball:

:hearts: :broken_heart: :heartbeat: :heartpulse: :heart_decoration:

:watch: :gear: :gem: :wrench: :envelope:


---

## Page Navigation

- Canonical URL: https://demo.growi.org/Sandbox
- Permalink: https://demo.growi.org/5a6eee6b6e451000259030c4
- Parent: [/](/5c9403b8ef06c40058a243e8.md)
- Children: 28 total
  - [Bootstrap3](/5f6d466c2d73df0048881f75.md)
  - [Bootstrap4](/5a8b15576cf1e900242e0f43.md)
  - [Diagrams](/5ed46e05df07e700484389f1.md)
  - [GUI for Table](/5bd2f39bf515a1003efcde54.md)
  - [HachMD](/5d4a553a4dc19b0044efe4ba.md)
  - [Math](/5ed46e05df07e700484389f4.md)
  - [Playground](/63d703bf36fd83995cdaae2d.md)
  - [Restricted page](/59378296a8600d00183d7ab4.md)
  - [SharedPage1](/5f31449b9c39330048375177.md)
  - [Untitled-1](/66cbe4d99bcdc42f9dc40010.md)
  - [Youtube動画を中央表示](/60a7f95f2d5aa40049c30154.md)
  - [__template](/637356833e38e2684997df23.md)
  - [_template](/637356663e38e2684997dca4.md)
  - [aannn](/645a3b4e4be73a5db39b9eb4.md)
  - [crowi と GrowiのMarkdown互換性テスト](/5acc7a569b81eb0024a7b2cc.md)
  - [diagrams.net 数式組版](/63189b3c5a4a0b3a50d595d4.md)
  - [emoji](/60a7f8cf2d5aa40049c30077.md)
  - [growi-plugin-attachment-refs](/60a888a95e88b400492d82fc.md)
  - [highlightjs-latex](/61f4eb41885ab8fb50376f68.md)
  - [plantuml_test](/5a8bec226cf1e900242e0f7b.md)
  - [sequence-diag-xss](/5ad69c33087ab40027fe598f.md)
  - [toc_test](/67822a741b385d2d08b14644.md)
  - [スタッフロール](/5d7a3cc84dc19b0044efe6c4.md)
  - [ファイルアップロードテスト2](/592ff9847f616a0019f77e93.md)
  - [リダイレクトテスト_to](/594bc54f149d740018d73870.md)
  - [新しいNotFoundページテスト](/625fd656760a41736ba1a767.md)
  - [閲覧制限ページ通知テスト](/5ef2ae4bdad9690048f1973e.md)
  - [階層テスト1](/61711bde7c95df220dc2f773.md)
- Total descendants: 53
- Siblings: 49 of 301 total (252 more not shown; see the page list API below for the full listing)
  - [1.1Features](/68df89739dd9097adbd175a9.md)
  - [1.1PDF出力](/633262aad1bb372c49923ebc.md)
  - [1.1Sandbox](/633262a5d1bb372c4992337f.md)
  - [20251225](/694ca0ea04eaf60f4a69e418.md)
  - [2026-03-28TEST0000](/69c73e0380602534231d3941.md)
  - [2026-07-09test0000](/6a4f273580b6a1d340de63da.md)
  - [GROWI Test](/69e5f8b6cfc9b7657e202877.md)
  - [GROWI 活用セミナー基本編](/64e6bdc530166ca8fbf46b8c.md)
  - [GROWI 活用セミナー応用編](/64bccc273fd96e3c7e51c2e7.md)
  - [GROWIセミナー](/63db399838527f27374aece8.md)
  - [Markdown](/695f4bc1bf932a5217f9e024.md)
  - [Official template](/6350e63be6eddb01dde38f49.md)
  - [PDF](/68141d373aca6145604b0364.md)
  - [Sidebar](/695f78d013ca7b0ea5f04b23.md)
  - [Stats](/694c184c04eaf60f4a68a351.md)
  - [TOP](/69c33f01e58cfe7c87825d84.md)
  - [Test Pages](/69f4c6e670b22a5e6af4c0de.md)
  - [Test pages](/68dc0996bafa678a79bb94d6.md)
  - [Test pags](/69688ff7478e4910dde8090f.md)
  - [Test peges](/68d0c4f40e82f37cf1d7299b.md)
  - [TestPage](/68f6047b8d34261b421efe5e.md)
  - [Untitled-1](/68d0d1b70e82f37cf1d75e0d.md)
  - [Untitled-10](/69806a55bb3a4cc5610119c8.md)
  - [Untitled-11](/6624ff68c7a7e2484b662876.md)
  - [Untitled-12](/6629fe18b208cb1df19beeee.md)
  - [Untitled-13](/66174df81a1d99ce81d79008.md)
  - [Untitled-15](/66174e2e1a1d99ce81d792c7.md)
  - [Untitled-16](/661781281a1d99ce81d80646.md)
  - [Untitled-17](/663dcc5a1577d8d5f35f70d9.md)
  - [Untitled-18](/663ac834cecd59b1604b9822.md)
  - [Untitled-2](/660a82980231f022444d9674.md)
  - [Untitled-20](/66474963bc21f9063c463933.md)
  - [Untitled-21](/66178ac81a1d99ce81d83f40.md)
  - [Untitled-23](/661896d6ef1089f5cb099bfb.md)
  - [Untitled-24](/66625b9c0dcc888dcf6ad4e3.md)
  - [Untitled-25](/6675100b118f6244ea8a12de.md)
  - [Untitled-26](/668e1d041113161afca8b79f.md)
  - [Untitled-27](/6673b9d6bce59f40cd9dbd80.md)
  - [Untitled-28](/668e8a04188bd6e074e60f35.md)
  - [Untitled-29](/668eacce188bd6e074e65b87.md)
  - [Untitled-3](/660b9b80a62ceeb6b9f77b27.md)
  - [Untitled-30](/668bc181619d1c19b63c09e9.md)
  - [Untitled-31](/6687818e470cb3cac458efb9.md)
  - [Untitled-32](/669758b971109342bea7a870.md)
  - [Untitled-33](/668f987611a4f49c522a35db.md)
  - [Untitled-34](/66909a2b0f00e43942f7889f.md)
  - [Untitled-35](/66987c99967dedba11a9eead.md)
  - [Untitled-36](/669a17291de9b0e60d100d60.md)
  - [Untitled-37](/66c10dc355c3e3a016c0ff6d.md)
- Last updated: 2025-05-13T19:35:48.545Z by admin1
- Full page listing (all children regardless of count): https://demo.growi.org/_api/v3/page-listing/children?id=5a6eee6b6e451000259030c4
