Contributing to the documentation page#
For Users
If you find mistakes in the page, please report it using Issues page. Please mention topics you think are missing, incorrect, or arenβt structured appropriately. If you want to get more actively involved, make a fork, implement you changes, and submit a pull request.
For staff
Please add yourself as members of this repository, and make changes to a branch in your name. Once changes are made, submit a pull/merge request to the main branch.
Structure of the source#
This website is created using Jupyterbook, based on sphinx. See the Jupyterbook for more details. The source for this website uses MyST Markdown.
The structure of the files looks like follows -
(web) π½ 618-rajarshi 0 (main)β tree .
.
βββ README.md
βββ _config.yml
βββ _static
β βββ style.css
βββ _toc.yml
βββ contact-us.md
βββ index.md
βββ interim-service.md
βββ logo.png
βββ lxp
β βββ introduction.md
βββ national-hpc-service.md
βββ references.bib
βββ requirements.txt
βββ scratch.md
...
There are three types of files
YAML files, with extension
.ymlwhich are used to define structure and build process of the pages._config.ymlfile defines all the configurational options for building the pages, and_toc.ymlfile defines the table of contents, and structure of the documents.CSS files, primarily stored in
_staticfolder, and define the appearance settings for the webpages.Markdown files, with
.mdextension. These are primarily ones that contain the documentation information. Jupyterbook follows MyST format, which is quite feature rich for building pages and pdfs of the technical documents. Checkout the MyST features here.