Skip to content

Commit 3dceb49

Browse files
authored
Feat/upgrade mkdocs (#13)
1 parent 7e4afa9 commit 3dceb49

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@ bucket?=
22
distribution?=
33

44
install:
5-
pip install mkdocs mkdocs-material --upgrade --user
5+
ifdef CONTINUOUSPHP
6+
sudo apt-get update -y
7+
sudo apt-get install -y python3 python3-pip
8+
endif
9+
sudo pip3 install mkdocs==1.0.4 mkdocs-material==3.1.0
610

711
build:
812
ifdef CONTINUOUSPHP
913
rm -rf .git
1014
endif
15+
export LC_ALL=C.UTF-8
16+
export LANG=C.UTF-8
1117
mkdocs build -d dist
1218

1319
deploy:

mkdocs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ theme:
99
primary: 'indigo'
1010
accent: 'light green'
1111
# Copyright
12-
copyright: 'Copyright © 2017 - 2018 Continuous SA'
12+
copyright: 'Copyright © 2017 - 2019 Continuous SA'
1313
# Options
1414
extra:
1515
social:
@@ -22,11 +22,13 @@ extra:
2222
# Extensions
2323
markdown_extensions:
2424
- admonition
25-
- codehilite(guess_lang=false)
26-
- toc(permalink=true)
25+
- codehilite:
26+
guess_lang: false
27+
- toc:
28+
permalink: true
2729
- meta
2830
# Navigation
29-
pages:
31+
nav:
3032
- INTRODUCTION: index.md
3133
- GIT REPOSITORY HOSTING SERVICES:
3234
- GIT REPOSITORY HOSTING SERVICES: vcs.md

0 commit comments

Comments
 (0)