在我的conf.py
我将主人定义为index
(index.rst
)
# The master toctree document.
master_doc = 'index'
当我使用动态创建.. include:: list.rst
文件的list .rst
导入rst文件列表时。
Project Test
================================
.. include:: list.rst
效果很好;但是当我在同一index.rst
中添加其他一些其他名称时,它不起作用,例如以下声明中的static.rst
和about.rst
:
Project Test
================================
.. include:: list.rst
static
about
答案 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