-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
hatch
scripts to build, serve and watch the docs + docs improve…
…ments (#587) * Add `hatch` scripts to build, serve and watch the docs * Convert index.rst to index.md * more fixes * more convert * more improvements * fix rtd * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix readme * Fix indices and tables * use ref * move faq --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1ab5984
commit 42a31f6
Showing
22 changed files
with
121 additions
and
146 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 |
---|---|---|
|
@@ -133,6 +133,3 @@ dmypy.json | |
|
||
# macOS | ||
.DS_Store | ||
|
||
# Copied changelog | ||
docs/source/**/changelog.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
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 was deleted.
Oops, something went wrong.
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
File renamed without changes.
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,12 @@ | ||
# Getting Started | ||
|
||
Tutorials. A hands-on introduction to Jupyter Releaser for maintainers. | ||
|
||
```{toctree} | ||
:caption: 'Contents:' | ||
:maxdepth: 1 | ||
making_release_from_repo | ||
making_release_from_releaser | ||
generate_changelog | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# How-to Guides | ||
|
||
Step-by-step guides. Covers key tasks and operations and common problems | ||
|
||
```{toctree} | ||
:caption: 'Contents:' | ||
:maxdepth: 1 | ||
convert_repo_from_releaser | ||
convert_repo_from_repo | ||
write_config | ||
maintain_fork | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Jupyter Releaser | ||
|
||
**Jupyter Releaser** contains a set of helper scripts and GitHub Actions to aid in automated releases of Python and npm packages. | ||
|
||
```{toctree} | ||
:maxdepth: 2 | ||
get_started/index | ||
how_to_guides/index | ||
reference/index | ||
faq/index | ||
``` | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
reference/changelog | ||
``` | ||
|
||
# Indices and tables | ||
|
||
- {ref}`genindex` | ||
- {ref}`modindex` | ||
- {ref}`search` |
This file was deleted.
Oops, something went wrong.
33 changes: 21 additions & 12 deletions
33
docs/source/reference/api_docs.rst → docs/source/reference/api_docs.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 |
---|---|---|
@@ -1,30 +1,39 @@ | ||
API Docs | ||
======== | ||
# API Docs | ||
|
||
Library Functions | ||
----------------- | ||
## Library Functions | ||
|
||
```{eval-rst} | ||
.. automodule:: jupyter_releaser.lib | ||
:members: | ||
``` | ||
|
||
## Python Utility Functions | ||
|
||
Python Utility Functions | ||
------------------------ | ||
```{eval-rst} | ||
.. automodule:: jupyter_releaser.python | ||
:members: | ||
``` | ||
|
||
## NPM Utility Functions | ||
|
||
NPM Utility Functions | ||
------------------------ | ||
```{eval-rst} | ||
.. automodule:: jupyter_releaser.npm | ||
:members: | ||
``` | ||
|
||
Changelog Utility Functions | ||
--------------------------- | ||
## Changelog Utility Functions | ||
|
||
```{eval-rst} | ||
.. automodule:: jupyter_releaser.changelog | ||
:members: | ||
``` | ||
|
||
## Global Utility Functions | ||
|
||
Global Utility Functions | ||
------------------------ | ||
```{eval-rst} | ||
.. automodule:: jupyter_releaser.util | ||
: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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
```{include} ../../../CHANGELOG.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,13 @@ | ||
# Reference | ||
|
||
Technical reference. Covers tools, components, commands, and resources. | ||
|
||
```{toctree} | ||
:maxdepth: 1 | ||
:caption: Contents: | ||
releaser_cli | ||
api_docs | ||
configuration | ||
theory | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Releaser CLI | ||
|
||
```{click} jupyter_releaser.cli:main | ||
:prog: jupyter-releaser | ||
:nested: full | ||
``` |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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