# 見出しとコメント

## 見出し

`#` 文字を使用して見出し行を示します。見出し行は太字になり、見出しに数字が含まれていても回答として表示されません。

```
# これは見出しです
```

{% hint style="info" %}
Soulver のスタイリング設定から、見出しのサイズや色（および `#` シンボル自体の色）をカスタマイズできます。

PDF エクスポートや印刷時に見出しシンボルを削除するオプションもあります。
{% endhint %}

## コメント

行内の特定の数字を無視させたい場合は、ラベルやダブルスラッシュコメントのようなコメントを使用します。

### labels:

行の先頭に、コロンを使用してラベルを使用します。

```
Cost of 128 GB iPhone 16: $999 | $999.00
```

{% hint style="info" %}
ラベルは自動的に **太字** でフォーマットされます。
{% endhint %}

### // ダブルスラッシュコメント

ダブルスラッシュの後のすべての数字は無視されます。

```
// 1 + 2 | 
1 + 2    | 3
```

行の末尾にスラッシュコメントを追加することもできます。

```
I spent $128 + $45 on clothes // on 10-02-2019 | $173.00
```

### (括弧コメント)

括弧内に追加のコメントワードがある数字は無視されます。

```
$999 (for iPhone 16) | $999.00
```

### "インラインコメント"

式の中の数字を「引用符で囲む」ことで、無視させることができます。

```
Boing "747" is $386.8M | $386.8M
```

#### コメントスタイルのまとめ

| タイプ      | 構文            | 注意事項                                                         |
| -------- | ------------- | ------------------------------------------------------------ |
| ラベル      | **123:**      | 時刻（例：14:45）と区別するために、コロンの後にスペースが必要な場合があります。                   |
| ダブルスラッシュ | // 123        | ソフトウェア言語で一般的に使用されます。このスタイルで行全体を自動的にコメントアウトするには、⌘-/ を押してください。 |
| 括弧       | (123 comment) | 暗黙の乗算を防ぐため、括弧内に付随するコメントワードがあることを確認してください。                    |
| インライン    | "123"         |                                                              |


---

# 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://documentation.soulver.app/ja/rifarensu/headings-and-comments.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.
