aboutsummaryrefslogtreecommitdiff
path: root/test/command/4715.md
blob: f6bf8736d58755b88f1bce0cfcd54948f8639020 (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
```
% 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"
        ]
    ]
]
 ```