Skip to content

Commit e9b5bcf

Browse files
committed
Merge branch 'mkdocs-fixes'
* Branch commit log: .gitignore: ignore bun.lock* doc/Makefile.mk: depend on .mkdocs.prep doc/mkdocs.yml: fix plugin order warnings Signed-off-by: Tim Janik <[email protected]>
2 parents 2f723b2 + 1b4d010 commit e9b5bcf

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/BACKLOG.md
77
/OUTLINE.md
88
/TAGS
9-
/bun.lockb
9+
/bun.lock*
1010
/compile_commands.json
1111
/config-defaults.mk
1212
/external/

doc/Makefile.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ $>/.mkdocs.prep: $>/doxygen/index.html $(doc/mkdocs.mdlist) doc/Makefile.mk
248248
git+https://github.com/tim-janik/mkdocs-live-edit-plugin
249249
ls -al $>/mkdocs/
250250
@touch $@
251-
.PHONY: $>/.mkdocs.prep
251+
ALL_TARGETS += $>/.mkdocs.prep
252252
mkdocs-serve: $>/.mkdocs.prep
253253
cd $>/ && uv run mkdocs serve -a localhost:2222
254254
mkdocs-build: $>/.mkdocs.prep

doc/mkdocs.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ docs_dir: mkdocs/doc
1111
site_dir: site/
1212

1313
plugins:
14-
- live-edit
15-
- search
16-
- privacy:
17-
# https://squidfunk.github.io/mkdocs-material/plugins/privacy/?h=blank#config.links_attr_map
18-
#links_attr_map: target: _blank # <- https://github.com/squidfunk/mkdocs-material/issues/6601
19-
- offline
20-
- tags
21-
- literate-nav:
22-
nav_file: NAV.md
23-
tab_length: 2
2414
- file-filter:
2515
exclude_glob:
2616
- '*akefile*'
2717
- copyright.ini
18+
- literate-nav:
19+
nav_file: NAV.md
20+
tab_length: 2
21+
- search
22+
- tags
23+
- offline
24+
- privacy:
25+
# https://squidfunk.github.io/mkdocs-material/plugins/privacy/?h=blank#config.links_attr_map
26+
#links_attr_map: target: _blank # <- https://github.com/squidfunk/mkdocs-material/issues/6601
27+
- live-edit
2828

2929
extra_css:
3030
- style/mkdocs.css

0 commit comments

Comments
 (0)