Skip to content

Commit 18fb4f0

Browse files
committed
Add .github/CODEOWNERS to .prettierignore
Also: - "make docs" now also automatically opens site in default browser - Made a few small simplifications in mkdocs.yml
1 parent f764698 commit 18fb4f0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
# File is nicely lined up
2+
.github/CODEOWNERS
3+
14
# Markdown documentation files with non-standard syntax for mkdocstrings that Prettier should not auto-format
25
docs/features/initialization.md

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ docs-test: ## Test if documentation can be built without warnings or errors
4343
@uv run zensical build -s
4444

4545
.PHONY: docs
46-
docs: ## Build and serve the documentation
47-
@uv run zensical serve
46+
docs: ## Build and serve the documentation (and open in default browser)
47+
@uv run zensical serve -o
4848

4949
.PHONY: build
5050
build: clean-build ## Build wheel file

mkdocs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ not_in_nav: |
140140
nav:
141141
- Home: index.md
142142
- Getting Started:
143-
- Overview: overview/index.md
144-
- Installation Instructions: overview/installation.md
145-
- Integrate cmd2 Into Your Project: overview/integrating.md
146-
- Alternatives: overview/alternatives.md
147-
- Resources: overview/resources.md
143+
- overview/index.md
144+
- overview/installation.md
145+
- overview/integrating.md
146+
- overview/alternatives.md
147+
- overview/resources.md
148148
- Migrating From cmd:
149149
- migrating/index.md
150150
- migrating/why.md

0 commit comments

Comments
 (0)