{% docstring %} Renders a `section` wrapped in an `
` tag with optional `
`. Markdown from that section will be yielded as the body of the article. Attributes: class: (optional) Adds `class` to `
` style: (optional) Adds `style` to `
` title: (optional) Will be rendered as `
` title_tag: (defaults to `h2`) which tag to wrap the `title` with inside `
` {% enddocstring %}
{% if section.title %}
<{{section.title_tag|default:'h2'}}> {{section.title}}
{% endif %} {{yield}}