在主文档中包含指令

时间:2018-05-24 21:35:58

标签: python-sphinx restructuredtext

在我的conf.py我将主人定义为indexindex.rst

# The master toctree document.
master_doc = 'index'

当我使用动态创建.. include:: list.rst文件的list .rst导入rst文件列表时。

Project Test
================================

.. include:: list.rst

效果很好;但是当我在同一index.rst中添加其他一些其他名称时,它不起作用,例如以下声明中的static.rstabout.rst

Project Test
================================

.. include:: list.rst

   static
   about   

1 个答案:

答案 0 :(得分:0)

我创建了一个新文件import 'package:flutter/material.dart'; void main() => runApp( MaterialApp( home: Scaffold( body: SafeArea( child: Row( children: <Widget>[ Expanded( child: Container( decoration: BoxDecoration( color: Colors.redAccent, shape: BoxShape.circle, ), ), ), Dismissible( key: ObjectKey(0), direction: DismissDirection.horizontal, child: Container( height: 150.0, width: 150.0, decoration: BoxDecoration( color: Colors.amber, shape: BoxShape.circle, ), ), ), Expanded( child: Container( decoration: BoxDecoration( color: Colors.redAccent, shape: BoxShape.circle, ), ), ), ], ), ), ), ), ); 并移动了所有静态rst名称。

staticList.rst

并将.. toctree:: :maxdepth: 1 static about 包含在staticList.rst文件中,它会提供所需的结果,但会略微破坏列表。

index.rst