mirror of
https://github.com/ublue-os/bazzite.git
synced 2024-12-28 18:20:09 +00:00
a6e1eec678
* chore(docs): Add fmt command to Justfile * chore(docs): Format markdown files * chore(docs): Minor tweaks to Justfile * chore(docs): Fix headers in handheld wiki * chore(docs): Fix headers in Steam Gaming Mode page * chore(docs): Fix headers in FAQ page * chore(docs): Fix italic text in Installation Guide index * chore(docs): Fix headers in Installation Guide pages * chore(docs): Fix headers in Desktop Environment Tweaks page * chore(docs): Fix headers in Reporting Bugs page * chore(docs): Remove duplicated contributing page * chore(docs): Fix headers in Contributing to Bazzite page * chore(docs): Combine multiple blockquotes in one in Automounting page * chore(docs): Fix broken ordered list * chore(docs): Remove unnecesary announcement bar * chore(docs): Fix headers in Gaming pages * chore(docs): Add missing headers in Framework laptops install guides * chore(docs): Add author metadata Adresses issue #1661 regarding lacking authors section * chore(docs): Add authors list to pages
23 lines
604 B
Makefile
23 lines
604 B
Makefile
export PATH := justfile_directory() + "/utils:" + env("PATH")
|
|
export GITHUB_REPOSITORY := "ublue-os/bazzite"
|
|
export MKDOCS_REPO_URL := "https://github.com/" + GITHUB_REPOSITORY
|
|
MKDOCS_DIR := justfile_directory()
|
|
|
|
_default:
|
|
just --list
|
|
|
|
# Install dependencies required for documentation stuff
|
|
install_dependencies:
|
|
bash ./utils/install-deps.sh
|
|
|
|
mkdocs +ARGS="":
|
|
rm -rf {{ MKDOCS_DIR }}/.cache/cmdrun
|
|
poetry run mkdocs {{ ARGS }}
|
|
|
|
mkdocs_clean:
|
|
rm -rf {{ MKDOCS_DIR }}/.cache
|
|
|
|
# Format all markdown files with prettier
|
|
fmt:
|
|
prettier --check --write $(find src -type f -name '*.md')
|