{{ method.html_doc | safe | urlize }} {% if method.is_args_doc_available %}
Parameters:
    {% for name, param_help in method.args_doc.items %}
  • {{ name }} {% if param_help.type %} ({{ param_help.type }}) - {% endif %} {{ param_help.text }}
  • {% endfor %}
{% endif %} {% if method.is_return_doc_available %}
Return:
  • {% if method.return_doc.type %} {{ method.return_doc.type }} - {% endif %} {{ method.return_doc.text }}
{% endif %} {% if not method.is_any_doc_available %} No documentation available yet {% endif %}