File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:3 AS builder
2
2
3
- RUN pip install mkdocs-material
3
+ RUN pip install mkdocs-material mkdocs-redirects
4
4
5
5
COPY . /docs
6
6
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ all: build
23
23
24
24
install-mkdocs :
25
25
ifndef HAS_MKDOCS
26
- pip3 install mkdocs
26
+ pip3 install mkdocs-material mkdocs-redirects
27
27
endif
28
28
29
29
help : # # Display this help
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ This uses [`mkdocs`](https://www.mkdocs.org/)
5
5
Install it with:
6
6
7
7
```
8
- pip install mkdocs-material
8
+ pip install mkdocs-material mkdocs-redirects
9
9
```
10
10
11
11
If you have Python3, you may need to run
12
12
13
13
```
14
- pip3 install mkdocs-material
14
+ pip3 install mkdocs-material mkdocs-redirects
15
15
```
16
16
17
17
## Serve the site locally
@@ -64,4 +64,3 @@ to get more details.
64
64
This plugin is by no means part of [ CNCF] ( https://www.cncf.io/ ) but we abide by
65
65
its
66
66
[ code of conduct] ( https://github.com/cncf/foundation/blob/master/code-of-conduct.md )
67
-
Original file line number Diff line number Diff line change @@ -131,3 +131,8 @@ markdown_extensions:
131
131
- def_list
132
132
- pymdownx.tasklist :
133
133
custom_checkbox : true
134
+
135
+ plugins :
136
+ - redirects :
137
+ redirect_maps :
138
+ ' sources.md ' : ' concepts/sources.md'
You can’t perform that action at this time.
0 commit comments