-
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.
- Loading branch information
Showing
4 changed files
with
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: "Deploy docs to GitHub Pages" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: atirut-w/mkdocs-deploy@master | ||
with: | ||
docs-dir: docs | ||
extra-packages: mkdocs-material |
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,5 @@ | ||
# Calling Convention | ||
!!! warning | ||
Calling convention may change during development. This document is a work in progress. | ||
!!! todo | ||
TODO: Document calling convention. |
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,5 @@ | ||
# ZDK | ||
C compiler and libraries for Z80 development. | ||
|
||
!!! note | ||
This documentation is a work in progress. If anything's missing, feel free to open an issue or a pull request. Be sure to watch out for duplicate issues and pull requests, though! |
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,22 @@ | ||
site_name: ZDK Documentation | ||
site_url: https://atirut-w.github.io/zdk | ||
|
||
repo_url: https://github.com/atirut-w/zdk/ | ||
repo_name: atirut-w/zdk | ||
edit_uri: edit/main/docs/ | ||
|
||
theme: | ||
name: material | ||
palette: | ||
- media: "(prefers-color-scheme)" | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: "default" | ||
primary: "blue grey" | ||
accent: "grey" | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: "slate" | ||
primary: "black" | ||
accent: "grey" | ||
|
||
markdown_extensions: | ||
- admonition |