## outline()


Generate an outline for the given document.


Usage


``` python
outline(doc)
```


## Parameters


`doc: str`  
The document content to outline.


## Returns


`list`  
A list of section headings.


## Examples

``` python
>>> outline("Chapter 1")
```

\['Chapter 1'\]
