## render()


Render a template into HTML.


Usage


``` python
render(template)
```


## Parameters


`template: str`  
The template string to render.


## Returns


`str`  
The rendered HTML output.


## Examples

``` python
>>> render("<h1>Title</h1>")
```

'

## Title

'
