-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
namespace is so much cleaner. added module level docstrings docstrings for most functions added all unit tests passed
- Loading branch information
1 parent
d184106
commit 9b85ee9
Showing
26 changed files
with
958 additions
and
642 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
Exceptions | ||
------------- | ||
|
||
.. autoclass:: markdown2canvas.AlreadyExists | ||
.. autoclass:: markdown2canvas.exception.AlreadyExists | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: markdown2canvas.SetupError | ||
.. autoclass:: markdown2canvas.exception.SetupError | ||
:members: | ||
:undoc-members: | ||
|
||
.. autoclass:: markdown2canvas.DoesntExist | ||
.. autoclass:: markdown2canvas.exception.DoesntExist | ||
:members: | ||
:undoc-members: |
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 |
---|---|---|
@@ -1,3 +1,30 @@ | ||
Free functions | ||
------------------ | ||
===================== | ||
|
||
|
||
Setup functions | ||
------------------- | ||
|
||
.. automodule:: markdown2canvas.setup_functions | ||
:members: | ||
|
||
|
||
|
||
Functions for interacting with a course on Canvas | ||
--------------------------------------------------- | ||
|
||
.. automodule:: markdown2canvas.course_interaction_functions | ||
:members: | ||
|
||
|
||
Functions markdown2canvas uses to translate from markdown to Canvas-html | ||
-------------------------------------------------------------------------- | ||
|
||
.. automodule:: markdown2canvas.translation_functions | ||
:members: | ||
|
||
.. autofunction:: markdown2canvas.canvas_objects.find_local_images | ||
|
||
.. autofunction:: markdown2canvas.canvas_objects.find_local_files | ||
|
||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
canvasapi | ||
Pygments | ||
Pygments | ||
markdown |
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.