{{#functions}}
### {{name}}
{{#if description}}{{description}}{{/if}}
{{#if since}}
#### Since
- {{since}}
{{/if}}
{{#if params}}
#### Params
{{#each params}}
- {{name}} - {{description}}
{{/each}}
{{/if}}
{{#if returns}}
#### Returns
{{#each returns}}
- {{#if type.names}} {{type.names}} {{^}} void {{/if}}
{{/each}}
{{/if}}
{{#if examples}}
#### Example
{{#each examples}}
```js
{{{this}}}
```
{{/each}}
{{/if}}
{{/functions}}
I'm trying to create auto docs with readme.hbs and jsdoc-to-markdown.
Why is my function loop returning all information as a code? How to fix it ? screen