web-dev-qa-db-ja.com

reStructuredTextで新しい行を作成するにはどうすればよいですか?

最初に改行/改行を強制するにはどうすればよいですか?新しい段落(つまり、行間にスペースを追加しない)にしたくないので、テキストを新しい行から始めたいだけです。ありがとう!

10
tiggerae

docutils raw role のドキュメントによると、これを行うことができます。

If there just *has* to be a line break here,
:raw-html:`<br />`
it can be accomplished with a "raw"-derived role.
But the line block syntax should be considered first.

最初にrawロールを定義する必要があります。

.. role:: raw-html(raw)
    :format: html

例が示すように、最初に ラインブロック構文 を検討してください。

| Lend us a couple of bob till Thursday.
| I'm absolutely skint.
| But I'm expecting a postal order and I can pay you back
  as soon as it comes.
| Love, Ewan.
11
Steve Piercy

ラインブロック構文 も機能し、少しわかりやすくなりました。

| This is a line | This is another line | Another new line

10
tiggerae

Global.rstファイルに置換を追加したため、常に生タグを追加する必要がありませんでした。

.. |br| raw:: html

  <br/>

この方法で| br |を使用できます改行が必要なとき。

5
esmerel