> ## Documentation Index
> Fetch the complete documentation index at: https://docs.soloent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Markdown記法

> 標準Markdownでのテキスト、タイトル、スタイリング

## タイトル

セクションヘッダーに最適です。

```md theme={null}
## タイトル
```

### サブタイトル

サブセクションヘッダーに最適です。

```md theme={null}
### サブタイトル
```

<Tip>
  各**タイトル**と**サブタイトル**はアンカーを作成し、右側の目次にも表示されます。
</Tip>

## テキストの書式設定

ほとんどのMarkdown書式をサポートしています。テキストを`**`、`_`、または`~`で囲むだけで書式設定できます。

| スタイル  | 書き方       | 結果        |
| ----- | --------- | --------- |
| 太字    | `**太字**`  | **太字**    |
| 斜体    | `_斜体_`    | *斜体*      |
| 取り消し線 | `~取り消し線~` | ~~取り消し線~~ |

これらを組み合わせることもできます。例えば、`**_太字と斜体_**`と書くと***太字と斜体***テキストになります。

上付き文字と下付き文字を書くにはHTMLを使用する必要があります。つまり、テキストを`<sup>`または`<sub>`で囲みます。

| テキストサイズ | 書き方                | 結果               |
| ------- | ------------------ | ---------------- |
| 上付き文字   | `<sup>上付き文字</sup>` | <sup>上付き文字</sup> |
| 下付き文字   | `<sub>下付き文字</sub>` | <sub>下付き文字</sub> |

## ページへのリンク

テキストを`[]()`で囲むことでリンクを追加できます。`[Googleへのリンク](https://google.com)`と書くと[Googleへのリンク](https://google.com)になります。

ドキュメント内のページへのリンクはルート相対パスである必要があります。基本的に、フォルダパス全体を含める必要があります。例えば、`[テキストへのリンク](/writing-content/text)`はコンポーネントセクションの「テキスト」ページにリンクします。

`[テキストへのリンク](../text)`のような相対リンクは、簡単に最適化できないため、開くのが遅くなります。

## 引用

### 単一行

引用を作成するには、段落の前に`>`を追加します。

> Dorothy followed her through many of the beautiful rooms in her castle.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
```

### 複数行

> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
```

### LaTeX

MintlifyはLatexコンポーネントを通じて[LaTeX](https://www.latex-project.org)をサポートしています。

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>

```md theme={null}
<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>
```
