"意外的缩进"使用重组文本列表

时间:2017-06-15 03:19:46

标签: html-lists restructuredtext

我没有成功使用Restructuredtext获得一个简单的3级缩进列表:

$ cat test.rst 
Title
======

- aaaa
  - aaaa2
  - aaaa2
      - aaaa3
- aaaa
- aaaa

Ok

$ rst2html test.rst > /tmp/a.html
test.rst:7: (ERROR/3) Unexpected indentation.
$ 

我在aaaa3前尝试了不同的空格组合,但在所有情况下我都会(ERROR/3) Unexpected indentation.

1 个答案:

答案 0 :(得分:4)

Nested lists很棘手,因为不同级别需要在这些级别之间留空行。

  

嵌套列表是可能的,但要注意它们必须通过空行与父列表项分开

这应该有效:

- aaaa

  - aaaa2
  - aaaa2

    - aaaa3

- aaaa
- aaaa