Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure documentation folders #28

Merged
merged 3 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ Template:
- Add `requirements.txt` for python environment dependencies [(#20)](https://github.com/rl-institut/super-repo/pull/20)
- Add templates for issues and PR [(#15)](https://github.com/rl-institut/super-repo/pull/15)
- Add a GitHub workflow to deploy documentation [(#25)](https://github.com/rl-institut/super-repo/pull/25)
- Add permanent links for documentation sections [(#28)](https://github.com/rl-institut/super-repo/pull/28)

### Changed
- Update the .gitignore [(#19)](https://github.com/rl-institut/super-repo/pull/19)
- Update the documentation file structure [(#28)](https://github.com/rl-institut/super-repo/pull/28)

### Removed
- Remove the `src` folder [(#26)](https://github.com/rl-institut/super-repo/pull/26)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ License and Citation
:alt: License

.. |badge_documentation| image:: https://img.shields.io/github/actions/workflow/status/rl-institut/super-repo/gh-pages.yml?branch=production
:target: \docs
:target: https://rl-institut.github.io/super-repo/
:alt: Documentation

.. |badge_contributing| image:: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 15 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,26 @@ A template repo to test and document elements and features for research software
It implements the collection of repository elements and files. <br>
The goal is to simplify and standardise the creation of software in GitHub repositories.

## Fields for development:
## Documentation Structure

The documentation is separated into two main sections:
`development` and `code documentation`. <br>

### Fields for development

Files and structures related to collaborative development, community processes,
and documentation.

- COLLABORATION
- GIT
- DOCUMENTATION
- RELEASE

### Fields for code documentation

Methods and standards of the module.

- INSTALL
- CODE-STYLE
- TESTS
- LOGGING
- RELEASE
26 changes: 14 additions & 12 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ theme:
# extensions
markdown_extensions:
- admonition
- toc:
permalink: 💙

plugins:
- mkdocstrings:
Expand All @@ -54,24 +56,24 @@ nav:
- Home: index.md
- Development:
- Collaboration:
- collaboration/index.md
- License: collaboration/license.md
- Citation: collaboration/citation.md
- Contributing: collaboration/contributing.md
- Users: collaboration/users.md
- Code of Conduct: collaboration/code_of_conduct.md
- development/collaboration/index.md
- License: development/collaboration/license.md
- Citation: development/collaboration/citation.md
- Contributing: development/collaboration/contributing.md
- Users: development/collaboration/users.md
- Code of Conduct: development/collaboration/code_of_conduct.md
- Git:
- git/index.md
- Gitignore: git/gitignore.md
- development/git/index.md
- Gitignore: development/git/gitignore.md
- Documentation:
- documentation/index.md
- development/documentation/index.md
- Release:
- release/index.md
- development/release/index.md
- Code Documentation:
- Install:
- install/index.md
- code/install/index.md
- Code Style:
- style/index.md
- code/style/index.md
- Functions:
- code/index.md
- code/code_example.md