# カスタムEメールでのマークダウン記法

## 概要

カスタム招待メールテンプレートの本文メッセージには、プレーンテキストだけでなく、基本的なマークダウン記法もご利用になれます。本ページではKeeperでサポートされているマークダウン記法を説明します。

### 見出し (Heading)

見出しを作成するには、単語やフレーズの前にハッシュ記号 (#) を付けます。使用するハッシュ記号の数は見出しレベルに対応しています。

| Markdown構文         | フォントサイズ       |
| ------------------ | ------------- |
| `# heading 1`      | フォントサイズ32の見出し |
| `## heading 2`     | フォントサイズ24の見出し |
| `### heading 3`    | フォントサイズ19の見出し |
| `#### heading 4`   | フォントサイズ16の見出し |
| `##### heading 5`  | フォントサイズ13の見出し |
| `###### heading 6` | フォントサイズ11の見出し |

### パラグラフ

文章はプレーンテキストで、複数の文章をまとめて段落を形成することができます。

{% hint style="warning" %}
段落をスペースやタブでインデントしないでください。
{% endhint %}

| マークダウン構文                                         | 出力                                                 |
| ------------------------------------------------ | -------------------------------------------------- |
| This is a one line paragraph                     | `This is a one line paragraph`                     |
| This is a multiline paragraph. I like formatting | `This is a multiline paragraph. I like formatting` |

### 改行

改行するには、行末でリターンキーかエンターキーを押します。リターンキーまたはエンターを複数回押すと、複数の改行を行います。

| マークダウン構文                                                  | 出力                                                                                  |
| --------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| <p>This is an example.<br>Of a linebreak.</p>             | <p><code>This is an example.</code><br><code>Of a linebreak.</code></p>             |
| <p>This is an example.<br><br>Of Multiple linebreaks.</p> | <p><code>This is an example.</code><br><br><code>Of Multiple linebreaks.</code></p> |

### 太字とイタリック

テキストを**太字**にするには、アスタリスク(\*\*)を2つ付けます。\
テキストを*斜体*にするには、アスタリスク (\*) を 1 つ付けます。

| マークダウン構文                             | 出力                             |
| ------------------------------------ | ------------------------------ |
| This is \*\*bold\*\*                 | This is **bold**               |
| This is \*italics\*                  | This is *italics*              |
| This is \*\*bold\*\* and \*italics\* | This is **bold** and *italics* |

### リンク

リンクを作成するには、リンクテキストをブラケット (\[ ]) で囲み、URLを括弧で囲みます。必要に応じて、リンクテキストの書式を**太字**または*斜体*に設定することもできます。

<table><thead><tr><th width="462">マークダウン構文</th><th>出力</th></tr></thead><tbody><tr><td><code>Visit [Keeper](https://keepersecurity.com)!</code></td><td>Visit <a href="https://www.keepersecurity.com/">Keeper</a>!</td></tr></tbody></table>

### URLから画像を埋め込む

URLから画像を埋め込むには、エクスクラメーションマーク(`!`)を入力し、続けてブラケット内にImageと入力し、括弧で画像アセットのパスまたはURLを入力します。

```
![Image](https://keeper-email-images.s3.amazonaws.com/common/acme.jpg)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.keeper.io/enterprise-guide/jp/user-and-team-provisioning/custom-invite-and-logo/custom-email-markdown-language.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
