Open
Description
In the docs / docs generator, "Syntax" heading is getting displayed even if there is no syntax entry (or if the entry is whitespace).
- https://processing-r.github.io/reference/frameRateVar.html
- https://processing-r.github.io/reference/PImage.html
We would expect that "Syntax" would not display if empty.
Here is the check on the jinja template, which may need to be expanded:
{% if item.syntax is not none %} {# To keep lxml from yelling at us about unstable APIs #}
<tr class=""><th scope="row">Syntax</th><td><pre>{{ item.syntax }}</pre></td></tr>
{% endif %}