forked from clayrisser/sphinx-markdown-builder
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for
autodoc_typehints=signature
Signed-off-by: Liran Funaro <liran.funaro@gmail.com>
- Loading branch information
1 parent
a557584
commit f9ecbbc
Showing
4 changed files
with
63 additions
and
3 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
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
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,54 @@ | ||
<meta name="author" content="Liran Funaro"/> | ||
<meta name="copyright" content="Copyright (c) 2023-2024, Liran Funaro."/> | ||
<meta name="version" content="0.6.6"/> | ||
|
||
<a id="auto-module"></a> | ||
|
||
# Auto Module | ||
|
||
Example module | ||
|
||
### *class* Point(x: [int](https://docs.python.org/3/library/functions.html#int), y: [str](https://docs.python.org/3/library/stdtypes.html#str)) | ||
|
||
A Point | ||
|
||
<a id="attributes"></a> | ||
|
||
## Attributes | ||
|
||
x: int | ||
: The x value | ||
|
||
y: str | ||
: The y value | ||
|
||
#### x *: [int](https://docs.python.org/3/library/functions.html#int)* | ||
|
||
X value | ||
|
||
#### y *: [str](https://docs.python.org/3/library/stdtypes.html#str)* | ||
|
||
Y value | ||
|
||
### deprecated_function() | ||
|
||
Some old function. | ||
|
||
#### Deprecated | ||
Deprecated since version 3.1: Use `other()` instead. | ||
|
||
### func1(param1: [int](https://docs.python.org/3/library/functions.html#int)) → [int](https://docs.python.org/3/library/functions.html#int) | ||
|
||
This is a function with a single parameter. | ||
Thanks to github.com/remiconnesson. | ||
|
||
* **Parameters:** | ||
**param1** – This is a single parameter. | ||
|
||
### func2(param1: [int](https://docs.python.org/3/library/functions.html#int), param2: [int](https://docs.python.org/3/library/functions.html#int)) → [str](https://docs.python.org/3/library/stdtypes.html#str) | ||
|
||
This is a function with two parameters. | ||
|
||
* **Parameters:** | ||
* **param1** – This is the first parameter. | ||
* **param2** – This is the second parameter. |