aboutsummaryrefslogtreecommitdiff
path: root/test/command/4715.md
blob: 58ba705444f5b9a7d9555fb90ca5469666023baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
```
% pandoc -f rst -t native
.. toctree::
   :name: tree1
   :class: foo bar
   :caption: Indice dei contenuti
   :numbered:
   :maxdepth: 3

   premessa.rst
   acquisizione-software.rst
   riuso-software.rst
^D
[ Div
  ( "tree1"
  ,
    [ "toctree", "foo", "bar" ]
  ,
    [
      ( "caption", "Indice dei contenuti" )
    ,
      ( "numbered", "" )
    ,
      ( "maxdepth", "3" )
    ]
  )
  [ Para
    [ Str "premessa.rst"
    , SoftBreak
    , Str "acquisizione-software.rst"
    , SoftBreak
    , Str "riuso-software.rst"
    ]
  ]
]
 ```