Skip to content

Commit 4115087

Browse files
authored
Merge pull request #84 : correct section numbering for PDF
2 parents 79ace20 + 6f544a6 commit 4115087

File tree

122 files changed

+652
-309
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+652
-309
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ jobs:
2929

3030
- name: Install python packages
3131
run: |
32+
python -m pip install --upgrade pip setuptools wheel
33+
pip install mkdocs
3234
pip install mkdocs-material
3335
pip install mkdocs-open-in-new-tab
36+
pip install mkdocs-with-pdf
3437
3538
- name: Deploy
3639
run: mkdocs gh-deploy --force --verbose

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
!docs/
1010
!docs/assets/
1111
!docs/assets/exports/
12-
!docs/assets/exports/*.epub
1312
!docs/assets/exports/*.pdf
1413
!docs/assets/images/
1514
!docs/assets/images/*.png

.markdownlint.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
no-trailing-punctuation: false
3+
no-inline-html: false
4+
first-line-heading: false
5+
link-fragments: false
6+
7+
# MD013 - Line length
8+
MD013:
9+
code_block_line_length: 125
10+
code_blocks: true
11+
heading_line_length: 80
12+
headings: true
13+
line_length: 125
14+
stern: true
15+
strict: false
16+
tables: true
17+

.spellcheck-en.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
matrix:
2+
- name: Markdown
3+
aspell:
4+
lang: en
5+
d: en_US
6+
dictionary:
7+
wordlists:
8+
- .wordlist-en.txt
9+
output: wordlist.dic
10+
encoding: utf-8
11+
pipeline:
12+
- pyspelling.filters.markdown:
13+
- pyspelling.filters.html:
14+
comments: false
15+
ignores:
16+
- code
17+
- pre
18+
sources:
19+
- 'docs/**/*.md'
20+
default_encoding: utf-8

0 commit comments

Comments
 (0)