Skip to content

Commit 8868f7f

Browse files
metadata tags support, custom metadata list, enable/disable + refactoring (#5)
close #7 close #4 close #6
1 parent e9fd9ee commit 8868f7f

29 files changed

Lines changed: 1088 additions & 164 deletions

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Default reviewers/codeowners for all code changes
2+
* @DariuszPorowski

.github/workflows/workflow.pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: ["3.8", "3.9", "3.10", "3.11"]
42+
python-version: ["3.8", "3.9", "3.10", "pypy-3.8"]
4343
os: [ubuntu-latest, macos-latest, windows-latest]
4444
runs-on: ${{ matrix.os }}
4545
steps:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# MkDocs
2+
site/**
3+
14
# Byte-compiled / optimized / DLL files
25
__pycache__/
36
*.py[cod]

.markdownlint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"ignore_front_matter": true,
3+
"MD013": false
4+
}

.mkdocsignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# MkDocs
2-
docs/test/**
2+
# docs/test/**
33
docs/**/draft-*.md

.vscode/settings.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
{
22
"yaml.schemas": {
33
"https://squidfunk.github.io/mkdocs-material/schema.json": [
4-
"mkdocs.yml"
4+
"mkdocs.yml",
5+
"mkdocs.base.yml"
6+
],
7+
// "https://json.schemastore.org/mkdocs-1.0.json": [
8+
// "mkdocs.yml",
9+
// "mkdocs.base.yml"
10+
// ],
11+
"schema-config.json": [
12+
"mkdocs.file-filter.yml"
513
]
614
},
715
"files.trimTrailingWhitespace": true,
@@ -16,5 +24,6 @@
1624
"*.mkdocsignore": "ignore",
1725
".pages": "yaml"
1826
},
19-
"python.linting.enabled": true
27+
"python.linting.enabled": true,
28+
"markdown.extension.toc.levels": "2..6"
2029
}

0 commit comments

Comments
 (0)