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 test for auto-module and remove needtable support.
- This also update the test to the latest version of the dependencies. Signed-off-by: Liran Funaro <[email protected]>
- Loading branch information
1 parent
4d29411
commit 96b74be
Showing
12 changed files
with
75 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ celerybeat-schedule | |
.env | ||
.venv | ||
env | ||
venv/ | ||
venv*/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
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 @@ | ||
# Auto Module | ||
|
||
Example module | ||
|
||
### *class* Point(x, y) | ||
|
||
A Point | ||
|
||
## 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 | ||
|
||
* **Parameters:** | ||
* **x** ([*int*](https://docs.python.org/3/library/functions.html#int)) | ||
* **y** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)) | ||
|
||
### deprecated_function() | ||
|
||
Some old function. | ||
|
||
#### Deprecated | ||
Deprecated since version 3.1: Use `other()` instead. | ||
|
||
### func1(param1) | ||
|
||
This is a function with a single parameter. | ||
Thanks to github.com/remiconnesson. | ||
|
||
* **Parameters:** | ||
**param1** ([*int*](https://docs.python.org/3/library/functions.html#int)) – This is a single parameter. | ||
* **Return type:** | ||
[int](https://docs.python.org/3/library/functions.html#int) | ||
|
||
### func2(param1, param2) | ||
|
||
This is a function with two parameters. | ||
|
||
* **Parameters:** | ||
* **param1** ([*int*](https://docs.python.org/3/library/functions.html#int)) – This is the first parameter. | ||
* **param2** ([*int*](https://docs.python.org/3/library/functions.html#int)) – This is the second parameter. | ||
* **Return type:** | ||
[str](https://docs.python.org/3/library/stdtypes.html#str) |
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 was deleted.
Oops, something went wrong.
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,5 @@ | ||
Auto Module | ||
------------- | ||
.. automodule:: my_module | ||
:members: | ||
:no-index: |
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 |
---|---|---|
|
@@ -11,5 +11,5 @@ Main Test File | |
blocks.rst | ||
image-target.rst | ||
empty.rst | ||
needtable.rst | ||
glossaries.rst | ||
auto-module.rst |
This file was deleted.
Oops, something went wrong.