段落区切り

On a Confluence page, a continuous line of text with two carriage returns at its end forms a paragraph. This is equivalent to a continuous line of text followed by a blank line.

HTML にレンダリングされると、<p></p> タグのセットで囲まれたテキスト行として表示されます。

改行

Confluence では、テキストの段落内で強制改行するオプションが 2 通りあります。

  • 暗黙的には、末尾にキャリッジ リターンを 1 個入力する。
  • Explicitly, by entering two consecutive backslashes: (\\).

When rendered into HTML, the result is a paragraph of text split into separate lines by <br> tags, wherever a forced line break appears.

(info) ほとんどの場合、キャリッジ リターン 1 個で十分であるため、明示的に改行する必要はありません。

下の例は、明示的な改行を使用する方法を示しています。

必要な入力項目

表示結果

here is some text
\\
divided \\
using line \\ \\

breaks

here is some text
divided
using line

breaks

This is a short list:
* Point 1
Text to go with point 1
* Point 2 \\ \\
Text to go with point 2 with a break

This is a short list:

  • Point 1
    Text to go with point 1
  • Point 2

    Text to go with point 2 with a break

If you wish to use multiple consecutive line breaks, each should be separated by a space character. For example, use \\ \\ for two consecutive line breaks.

水平線

Use four dashes (----) to create a horizontal rule.

(info) ダッシュがテキストの他の部分と別の行になっていることを確認します。

必要な入力項目

表示結果

here is some text
----
divided by a horizontal rule

here is some text


divided by a horizontal rule

関連トピック

Working with Lists
Confluence Notation Guide Overview

Take me back to Confluence User's Guide

  • ラベルなし