次のようないくつかの階層セクションを含む再構成テキスト ドキュメントがあります。
Main title
##########
Text under the main title.
Sub-section
===========
Text under the sub-section.
これはうまく機能します。Sphinx を使用してコンパイルすると、正しい HTML 形式が得られます。
私の質問は次のとおりです。階層レベルを上げて、いくつかのサブセクションの後にテキストを追加するにはどうすればよいですか?
例えば:
Main title
##########
Text under the main title.
Sub-section
===========
Text under the sub-section.
In my CSS, sub-section is indented.
I want this paragraph to be rendered as part of the Main title section,
not the sub-section.
私は基本的に、階層のレベルを上げる方法を探しています。
これは可能ですか?
ありがとう!