-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): docs generation with MkDocs
- Loading branch information
Showing
10 changed files
with
154 additions
and
22 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
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 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,4 @@ | ||
{% | ||
include-markdown "../CHANGELOG.md" | ||
heading-offset=0 | ||
%} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 @@ | ||
{% | ||
include-markdown "../README.md" | ||
heading-offset=0 | ||
%} |
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,90 @@ | ||
site_name: Checker | ||
site_description: Python CLI script to run build and run tests against students solutions | ||
site_url: https://manytask.github.io/checker/ | ||
|
||
docs_dir: ./docs | ||
site_dir: ./site | ||
|
||
theme: | ||
name: material | ||
|
||
palette: | ||
# Palette toggle for light mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: default | ||
toggle: | ||
icon: material/lightbulb | ||
name: Switch to dark mode | ||
primary: teal | ||
accent: purple | ||
|
||
# Palette toggle for dark mode | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: slate | ||
toggle: | ||
icon: material/lightbulb | ||
name: Switch to light mode | ||
primary: teal | ||
accent: lime | ||
|
||
features: | ||
- navigation.tabs | ||
- navigation.sections | ||
- navigation.top | ||
- search.suggest | ||
- search.highlight | ||
- content.tabs.link | ||
- content.code.copy | ||
- content.code.annotation | ||
|
||
language: en | ||
|
||
font: | ||
text: Roboto | ||
code: Roboto Mono | ||
|
||
icon: | ||
repo: fontawesome/brands/github | ||
|
||
favicon: images/logo-manytask.png | ||
logo: images/logo-manytask.png | ||
|
||
validation: | ||
omitted_files: warn | ||
absolute_links: warn | ||
unrecognized_links: info | ||
|
||
extra: | ||
version: | ||
provider: mike | ||
|
||
repo_name: manytask/checker | ||
repo_url: https://github.com/manytask/checker | ||
|
||
nav: | ||
- Overview: index.md | ||
- Concepts: 0_concepts.md | ||
- Getting started: 1_getting_started.md | ||
- Configuration: 2_configuration.md | ||
- Plugins: 3_plugins.md | ||
- Usage: 4_usage.md | ||
- Development: 5_development.md | ||
- Changelog: 6_changelog.md | ||
|
||
markdown_extensions: | ||
- pymdownx.details | ||
- pymdownx.superfences | ||
- pymdownx.highlight: | ||
pygments_lang_class: true | ||
- pymdownx.extra | ||
- pymdownx.tabbed: | ||
alternate_style: true | ||
- mkdocs_click | ||
|
||
plugins: | ||
- mike: | ||
alias_type: symlink | ||
canonical_version: latest | ||
- search | ||
- include-markdown | ||
- mkdocstrings |
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