-
Notifications
You must be signed in to change notification settings - Fork 5
Documentation hosting on Github Pages #11
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0e04b7c
Add documentation
Hoodie-Huuuuu 6020f0b
Change doc style
Hoodie-Huuuuu b7cd32e
add automatic deploy
Hoodie-Huuuuu 3c5b85a
now 1 job for docs deployment
Hoodie-Huuuuu 66df7b3
fix language selector on GH Pages, add contributing instructions
Hoodie-Huuuuu e0fad69
remove an unused section in en version of readme
Hoodie-Huuuuu 0fc29e3
fixed margins in markdown files
Hoodie-Huuuuu ad679bf
add deploy-docs workflow to CI
Hoodie-Huuuuu 5edcf7b
Documentation hosting on Github Pages fixes (#13)
hackallcode d7075af
new styles; added clarifications to the developer guide regarding doc…
Hoodie-Huuuuu 3140c92
check ci
Hoodie-Huuuuu 1e7ccf3
change styles
Hoodie-Huuuuu cdda3ad
remove debug comments
Hoodie-Huuuuu 2e5154a
Update doc/build/Makefile
Hoodie-Huuuuu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,36 @@ | ||
name: "Documentation" | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
deploy: | ||
permissions: | ||
pages: "write" | ||
id-token: "write" | ||
environment: | ||
name: "github-pages" | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: "actions/checkout@v4" | ||
|
||
- name: "Set up Python" | ||
uses: "actions/setup-python@v5" | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: "Install requirements" | ||
run: "make doc/prepare" | ||
|
||
- name: "Build site" | ||
run: "make doc/build" | ||
|
||
- name: "Upload artifact" | ||
uses: "actions/upload-pages-artifact@v3" | ||
with: | ||
path: "./site" | ||
|
||
- name: "Deploy to GitHub Page" | ||
id: "deployment" | ||
uses: "actions/deploy-pages@v4" |
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -24,3 +24,4 @@ test/performance: | |
|
||
include ./build/package/Makefile | ||
include ./build/ci/Makefile | ||
include ./doc/build/Makefile |
This file contains hidden or 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 hidden or 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
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 hidden or 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 @@ | ||
../../../asset/favicon.png |
This file contains hidden or 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 @@ | ||
../../../asset/scheme.png |
This file contains hidden or 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,23 @@ | ||
.hide-in-mkdocs { | ||
display: none; | ||
} | ||
|
||
.md-header__title { | ||
margin-left: 0 !important; | ||
} | ||
|
||
[data-md-color-scheme="slate"] { | ||
--md-code-fg-color: #ffffff; | ||
--md-code-bg-color: #333542; | ||
} | ||
|
||
[data-md-color-scheme="default"] { | ||
--md-code-bg-color: #ECEFF1; | ||
} | ||
|
||
.md-typeset code { | ||
padding: 0.2em 0.4em; | ||
border-radius: 4px; | ||
white-space: pre-wrap; | ||
word-wrap: break-word; | ||
} |
This file contains hidden or 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,21 @@ | ||
default: docs | ||
all: default | ||
|
||
doc: doc/prepare doc/serve | ||
Hoodie-Huuuuu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
doc/prepare: | ||
pip install -r ./doc/build/requirements.txt | ||
|
||
doc/serve: | ||
mkdocs serve \ | ||
--dev-addr "127.0.0.1:8000" \ | ||
--open \ | ||
--strict \ | ||
--clean \ | ||
-f ./mkdocs.yml | ||
|
||
.PHONY: doc/build | ||
doc/build: | ||
mkdocs build \ | ||
--strict \ | ||
--site-dir ./site |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.