-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add boilerplate for documentation with mkdocs (#35)
- Loading branch information
1 parent
8bed2b6
commit 5b4c9bf
Showing
8 changed files
with
100 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{!../CODE_OF_CONDUCT.md!} |
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 @@ | ||
{!../CONTRIBUTING.md!} |
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,8 @@ | ||
This page shows you how to get started using JANUS. | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | ||
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | ||
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | ||
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse | ||
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | ||
proident, sunt in culpa qui officia deserunt mollit anim id est laborum. |
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 @@ | ||
{!../README.md!} |
Empty file.
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,67 @@ | ||
site_name: JANUS | ||
site_url: https://fwljanus.readthedocs.io | ||
repo_url: https://github.com/FormingWorlds/JANUS | ||
repo_name: GitHub | ||
|
||
nav: | ||
- Home: index.md | ||
- Getting started: getting_started.md | ||
- Contributing: CONTRIBUTING.md | ||
- Code of Conduct: CODE_OF_CONDUCT.md | ||
- 🔗 Source code: https://github.com/FormingWorlds/JANUS | ||
- 🔗 Issues: https://github.com/FormingWorlds/JANUS/issues | ||
|
||
theme: | ||
name: material | ||
palette: | ||
primary: black | ||
accent: deep orange | ||
|
||
extra_css: | ||
- stylesheets/extra.css | ||
|
||
markdown_extensions: | ||
- admonition | ||
- attr_list | ||
- markdown_include.include: | ||
base_path: docs | ||
- pymdownx.extra | ||
- pymdownx.arithmatex: | ||
generic: true | ||
|
||
extra_javascript: | ||
- https://polyfill.io/v3/polyfill.min.js?features=es6 | ||
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js | ||
|
||
plugins: | ||
- search | ||
- mkdocstrings: | ||
# https://mkdocstrings.github.io/usage/ | ||
handlers: | ||
python: | ||
paths: [src] | ||
import: | ||
- https://installer.readthedocs.io/en/stable/objects.inv | ||
- https://numpy.org/doc/stable/objects.inv | ||
- https://docs.scipy.org/doc/scipy/objects.inv | ||
- https://pandas.pydata.org/docs/objects.inv | ||
- https://matplotlib.org/stable/objects.inv | ||
options: | ||
docstring_style: numpy | ||
docstring_options: | ||
ignore_init_summary: yes | ||
show_submodules: no | ||
show_source: true | ||
show_root_heading: false | ||
show_root_full_path: false | ||
docstring_section_style: list | ||
members_order: alphabetical | ||
merge_init_into_class: yes | ||
filters: ["!^_"] | ||
|
||
watch: | ||
- src/ | ||
- docs/ | ||
- README.md | ||
- CONTRIBUTING.md | ||
- CODE_OF_CONDUCT.md |
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