-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from godatadriven/merge-class-and-func-attempt-2
Merge class and func attempt 2
- Loading branch information
Showing
30 changed files
with
1,613 additions
and
1,258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
docs/templates/python/material/docstring/other_parameters.html.jinja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
docs/templates/python/material/docstring/receives.html.jinja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% import "language.html" as lang with context %} | ||
|
||
<p><strong>Receives at execution time:</strong></p> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>{{ lang.t("Name") }}</th> | ||
<th>{{ lang.t("Type") }}</th> | ||
<th>{{ lang.t("Description") }}</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for receives in section.value %} | ||
<tr> | ||
<td>{% if receives.name %}<code>{{ receives.name }}</code>{% endif %} | ||
<td> | ||
{% if receives.annotation %} | ||
{% with expression = receives.annotation %} | ||
<code>{% include "expression.html" with context %}</code> | ||
{% endwith %} | ||
{% endif %} | ||
</td> | ||
<td> | ||
<div class="doc-md-description"> | ||
{{ receives.description|convert_markdown(heading_level, html_id) }} | ||
</div> | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.