Skip to content

Commit

Permalink
Refined documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta committed May 27, 2023
1 parent c1d268d commit b643181
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 55 deletions.
112 changes: 57 additions & 55 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,57 @@
site_author: dhondta
site_name: "Codext - Extension of native codecs for Python"
repo_url: https://github.com/dhondta/python-codext
copyright: Copyright © 2021-2023 Alexandre D'Hondt
docs_dir: pages
nav:
- Introduction: index.md
- Features: features.md
- 'Guess mode': guessing.md
- Encodings:
- Base: enc/base.md
- Binary: enc/binary.md
- Common: enc/common.md
- Compressions: enc/compressions.md
- Cryptography: enc/crypto.md
- Hashing: enc/hashing.md
- Languages: enc/languages.md
- Others: enc/others.md
- Steganography: enc/stegano.md
- 'String manipulations': manipulations.md
- 'CLI tool': cli.md
- 'Create your codec': howto.md
extra:
generator: false
social:
- icon: fontawesome/solid/paper-plane
link: mailto:alexandre.dhondt@gmail.com
name: Contact Alex
- icon: fontawesome/brands/github
link: https://github.com/dhondta
name: Alex on GitHub
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/alexandre-d-2ab2aa14/
name: Alex on LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/alex_dhondt
name: Alex on Twitter
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: img/logo.png
favicon: img/icon.png
use_directory_urls: false
markdown_extensions:
- toc:
permalink: true
- admonition
site_author: dhondta
site_name: "Codext - Extension of native codecs for Python"
repo_url: https://github.com/dhondta/python-codext
copyright: Copyright © 2021-2023 Alexandre D'Hondt
docs_dir: pages
nav:
- Introduction: index.md
- Features: features.md
- 'Guess mode': guessing.md
- Encodings:
- Base: enc/base.md
- Binary: enc/binary.md
- Common: enc/common.md
- Compressions: enc/compressions.md
- Cryptography: enc/crypto.md
- Hashing: enc/hashing.md
- Languages: enc/languages.md
- Others: enc/others.md
- Steganography: enc/stegano.md
- 'String manipulations': manipulations.md
- 'CLI tool': cli.md
- 'Create your codec': howto.md
extra:
generator: false
social:
- icon: fontawesome/solid/paper-plane
link: mailto:alexandre.dhondt@gmail.com
name: Contact Alex
- icon: fontawesome/brands/github
link: https://github.com/dhondta
name: Alex on GitHub
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/alexandre-d-2ab2aa14/
name: Alex on LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/alex_dhondt
name: Alex on Twitter
extra_css:
- css/extra.css
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
logo: img/logo.png
favicon: img/icon.png
use_directory_urls: false
markdown_extensions:
- toc:
permalink: true
- admonition
26 changes: 26 additions & 0 deletions docs/pages/css/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* Full width (only works for some themes, including 'material') */
@media only screen and (min-width: 76.25em) {
.md-main__inner {
max-width: none;
}
.md-sidebar--primary {
left: 0;
}
.md-sidebar--secondary {
right: 0;
margin-left: 0;
-webkit-transform: none;
transform: none;
}
}

/* See https://github.com/mkdocs/mkdocs/wiki/MkDocs-Recipes */
/* Add Support for Checkbox Lists */
.task-list-item {
list-style-type: none;
}

.task-list-item input {
margin: 0 4px 0.25em -20px;
vertical-align: middle;
}

0 comments on commit b643181

Please sign in to comment.