This is a project which aims to document the casio OS partially https://bible.planet-casio.com/lailouezzz/
Go to file
Lailouezzz f457a5fc90
More details
2020-01-04 20:30:07 +01:00
docs More details 2020-01-04 20:30:07 +01:00
.gitignore Adding .gitignore 2019-12-30 14:33:44 +01:00
README.md More details 2020-01-04 20:30:07 +01:00
macros_def.py First commit 2019-12-29 22:50:52 +01:00
mkdocs.yml First commit 2019-12-29 22:50:52 +01:00

README.md

Casio documentation project

This static website is available on the casio bible.

Description

macros_def.py is a python script who define some macros for simplify writing :

  • includecode(path, flavor) : it's for include a file code example :
    {{ includecode("/path/to/file.cpp", "cpp") }}

  • includemd(path) : it's for include over .md file (like #include in C) example :
    {{ includemd("/path/to/file.md") }}

  • downloadlink(contain, url) : it's for create a download link example :
    {{ downloadlin("zip file here", "/path/to/file.zip") }}

mkdocs.yml is here for define how mkdocs build the static site.
Check the official site of mkdocs for more informations.

Dependencies

  • mkdocs for build the static site.
  • mkdocs-material is needed for beautiful CSS (pip install mkdocs-material).
  • mkdocs-macros-plugin is needed for use the macros (pip install mkdocs-macros-plugin).
  • mkdocs-pdf-export-plugin is needed for convert all .md in PDF format (mkdocs-pdf-export-plugin).
  • I think that's all :)