Documentation for introducing the usage of PSS language.
If you need to generate the website locally, please install MkDocs first. (Reference: https://squidfunk.github.io/mkdocs-material/getting-started/)
I recommend using docker if you develop on Microsoft Windows (e.g., win10/win11).
Steps of setup docker:
- Download and install Docker Desktop.
- In Docker Desktop, search
squidfunk/mkdocs-material
on the top console then pull it. - Clone this repo to a local directory.
- Go to the directory, and create a text file named
Dockerfile
without any extension. - Paste the following context into
Dockerfile
:
FROM squidfunk/mkdocs-material
RUN pip install mkdocs-macros-plugin
RUN pip install mkdocs-glightbox
RUN pip install mkdocs-git-revision-date-localized-plugin
- Run PowerShell at the current path and enter following command:
docker build -t squidfunk/mkdocs-material .
- The older docker image can be deleted.
Run a PowerShell inside the local repo with following command:
docker run --rm -it -p 8000:8000 -v .:/docs squidfunk/mkdocs-material
Once the local MkDocs' server is ready, you can preview it on http://localhost:8000/
.
The server will auto-build the website every time any files under docs/ are updated.