Skip to content

Commit

Permalink
中枢向け情報編集完了
Browse files Browse the repository at this point in the history
  • Loading branch information
GlinTFraulein committed Jul 21, 2024
1 parent aef8066 commit 7f36974
Show file tree
Hide file tree
Showing 13 changed files with 73 additions and 245 deletions.
7 changes: 0 additions & 7 deletions docs/tutorial-extras/_category_.json

This file was deleted.

Binary file removed docs/tutorial-extras/img/docsVersionDropdown.png
Binary file not shown.
Binary file removed docs/tutorial-extras/img/localeDropdown.png
Binary file not shown.
55 changes: 0 additions & 55 deletions docs/tutorial-extras/manage-docs-versions.md

This file was deleted.

88 changes: 0 additions & 88 deletions docs/tutorial-extras/translate-your-site.md

This file was deleted.

108 changes: 18 additions & 90 deletions docs/中枢向け情報/04_使用可能な各種記法.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,87 +7,23 @@ sidebar_position: 4
## マークダウン記法
Docusaurusでは、マークダウン記法が使えます。マークダウン記法の使い方については、[Markdown記法 サンプル集](https://qiita.com/tbpgr/items/989c6badefff69377da7)をご覧ください。ここでも、簡単なものについては紹介します。

### 見出し
見出しを作ることができます。見出しは、ページの右側からジャンプすることができます。
```text title="見出し"
# ページのタイトル
## 中見出し
### 小見出し
```

### 箇条書きリスト
ハイフンから始めることで、箇条書きリストを生成できます。ここで、ネストさせるためには行の頭にtabを挿入しています。
```text title="箇条書きリスト"
- リスト
- ネスト
- ネスト2
- ネストのネスト
- ネスト3
```
- リスト
- ネスト
- ネスト2
- ネストのネスト
- ネスト3

### 番号付きリスト
数字+ドットから始めることで、番号付きリストを生成できます。このとき、**記入した番号と表示される番号は無関係**なので、全部`1.`で作ると変更に強いです。
```text title="番号付きリスト"
1. リスト
1. ネスト
1. ネスト2
1. ネストのネスト
1. ネスト3
```
1. リスト
1. ネスト
1. ネスト2
1. ネストのネスト
1. ネスト3

### 引用
`>`から始めることで、引用を生成できます。引用は入れ子にできます。
```text title="引用"
> これは番号付きリストの引用です。
> 1. リスト
> 1. ネスト
> 1. ネスト2
> 1. ネストのネスト
> 1. ネスト3
>> さらに、引用を重ねることもできます。
```
> これは番号付きリストの引用です。
> 1. リスト
> 1. ネスト
> 1. ネスト2
> 1. ネストのネスト
> 1. ネスト3
>> さらに、引用を重ねることもできます。
:::tip Notionの活用

## Docusaurusの記法
実際にマークダウン記法を覚える必要はほとんどありません。なぜなら、多くのマークダウン記法はNotionからのコピペに対応しているからです。

Docusaulusは、マークダウン記法に加えて専用の記法を持っています。もちろん、併用可能です
マークダウン記法を覚えるのが面倒な人や、そこに時間を割きたくない人は、一度ローカル環境のNotionでページを作り、そこから各ページにコピペをすることでマークダウン記法を使うことができます

### コードブロック
:::

Markdown code blocks are supported with Syntax highlighting.
## Docusaurusの記法

````md
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
```
````
Docusaulusは、マークダウン記法に加えて専用の記法を持っています。もちろん、併用可能です。

```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
```
実際の書き方は、このページのファイル`04_使用可能な各種記法.md`の中身をご覧ください。

### フロントマーカー
コードブロックにタイトルを追加できます。

コードブロックにタイトルを追加できます。コードブロック自体はマークダウン記法に存在します。

```text title="my-doc.md"
// highlight-start
Expand Down Expand Up @@ -118,48 +54,40 @@ Markdown text with [links](./hello.md)

画像も、リンクとほぼ同じ要領で差し込むことができます。

You can use absolute paths to reference images in the static directory (`static/img/docusaurus.png`):
`static`以下のフォルダ内に画像を置き、`static`以下のパスを入力して参照します。 例: (`static/img_UniMagic/Unimagic-LogoCircleBK-1k.png`)

```md
![Docusaurus logo](/img/docusaurus.png)
![UniMagic logo](/img_UniMagic/Unimagic-LogoCircleBK-1k.png)
```

![Docusaurus logo](/img/docusaurus.png)

You can reference images relative to the current file as well. This is particularly useful to colocate images close to the Markdown files using them:

```md
![Docusaurus logo](./img/docusaurus.png)
```


![UniMagic logo](/img_UniMagic/Unimagic-LogoCircleBK-1k.png)

### Admonitions
### 強調

Docusaurus has a special syntax to create admonitions and callouts:
文章を特別な枠で囲い、強調して表示することができます。

```md
:::tip My tip

Use this awesome feature option
tipを書くことができます。便利でしょう?

:::

:::danger Take care

This action is dangerous
夏は熱中症に、冬は風邪に気を付けましょう。

:::
```

:::tip My tip

Use this awesome feature option
tipを書くことができます。便利でしょう?

:::

:::danger Take care

This action is dangerous
夏は熱中症に、冬は風邪に気を付けましょう。

:::
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
sidebar_position: 6
sidebar_position: 100
---

# Congratulations!
# お疲れ様でした!

You have just learned the **basics of Docusaurus** and made some changes to the **initial template**.
これで、Docusaurusの初歩的な機能が使えるようになりました。そして、Information Hubを作るためにはある程度十分な機能が使えると言ってよいでしょう。

Docusaurus has **much more to offer**!
Docusaurusにはさらに高度な機能もありますが、それらはできる人に任せましょう。

Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**.

Expand Down
2 changes: 1 addition & 1 deletion docs/中枢向け情報/_category_.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"label": "運営中枢向け情報",
"position": 2,
"position": 100,
"link": {
"type": "generated-index",
"description": "運営中枢向けの、主にドキュメントを書くために必要な情報です。将来的に運営中枢向けの独自Information Hubへ移管します。情報の翻訳にあたり、いくつかの不要な情報を省いています。必要に応じて、Docusaulus公式の情報も確認してください。"
Expand Down
8 changes: 8 additions & 0 deletions docs/職員向け情報/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "職員向け情報",
"position": 1,
"link": {
"type": "generated-index",
"description": "職員向けの情報です。"
}
}
17 changes: 17 additions & 0 deletions docs/職員向け情報/テンプレート.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
sidebar_position: 999
---

# テンプレート

このページはテンプレートページです。

必要に応じてこのファイルをコピペしたり、このファイルを無視して新しいファイルから編集を始めてください。

## 中見出し

中見出しです。

### 小見出し

小見出しです。
8 changes: 8 additions & 0 deletions docs/講師向け情報/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"label": "講師向け情報",
"position": 2,
"link": {
"type": "generated-index",
"description": "講師向けの情報です。"
}
}
17 changes: 17 additions & 0 deletions docs/講師向け情報/テンプレート.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
sidebar_position: 999
---

# テンプレート

このページはテンプレートページです。

必要に応じてこのファイルをコピペしたり、このファイルを無視して新しいファイルから編集を始めてください。

## 中見出し

中見出しです。

### 小見出し

小見出しです。
Binary file added static/img_UniMagic/Unimagic-LogoCircleBK-1k.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7f36974

Please sign in to comment.