File tree 4 files changed +41
-16
lines changed
4 files changed +41
-16
lines changed Original file line number Diff line number Diff line change 26
26
env :
27
27
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
28
28
29
+ lychee :
30
+ name : Check URLs
31
+ runs-on : ubuntu-latest
32
+ steps :
33
+ - uses : actions/checkout@v4
34
+ - name : Restore lychee cache
35
+ uses : actions/cache@v4
36
+ with :
37
+ path : .lycheecache
38
+ key : cache-lychee-${{ github.sha }}
39
+ restore-keys : cache-lychee-
40
+ - name : Run Lychee
41
+ uses : lycheeverse/lychee-action@v2
42
+ with :
43
+ args : --cache --max-cache-age 1d .
44
+
29
45
test :
30
46
name : Test
31
47
runs-on : ${{ matrix.platform }}
Original file line number Diff line number Diff line change @@ -109,7 +109,3 @@ repos:
109
109
- mkdocs>=1.6.0,<1.7.0
110
110
- platformdirs
111
111
- wcmatch
112
- - repo : https://github.com/mondeja/rust-pc-hooks
113
- rev : v1.3.0
114
- hooks :
115
- - id : lychee
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " mkdocs-include-markdown-plugin"
3
- version = " 7.1.2 "
3
+ version = " 7.1.3 "
4
4
description = " Mkdocs Markdown includer plugin."
5
5
readme = " README.md"
6
6
license = " Apache-2.0"
@@ -104,9 +104,9 @@ targets = [{ file = "pyproject.toml" }]
104
104
[tool .project-config ]
105
105
cache = " 2 days"
106
106
style = [
107
- " gh://mondeja/project-config-styles@v5.4 /base/pre-commit/md2po2md.json5" ,
108
- " gh://mondeja/project-config-styles@v5.4 /python/base.json5" ,
109
- " gh://mondeja/project-config-styles@v5.4 /python/mypy.json5" ,
107
+ " gh://mondeja/project-config-styles@v5.5 /base/pre-commit/md2po2md.json5" ,
108
+ " gh://mondeja/project-config-styles@v5.5 /python/base.json5" ,
109
+ " gh://mondeja/project-config-styles@v5.5 /python/mypy.json5" ,
110
110
]
111
111
112
112
[tool .coverage .run ]
Original file line number Diff line number Diff line change 14
14
"type" : " object" ,
15
15
"properties" : {
16
16
"opening_tag" : {
17
- "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#config_tags " ,
17
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#opening_tag-and-closing_tag " ,
18
18
"type" : " string" ,
19
19
"default" : " {%"
20
20
},
21
21
"closing_tag" : {
22
- "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#config_tags " ,
22
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#opening_tag-and-closing_tag " ,
23
23
"type" : " string" ,
24
24
"default" : " %}"
25
25
},
68
68
"type" : " string" ,
69
69
"default" : " <!--end-->"
70
70
},
71
+ "recursive" : {
72
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#include_recursive" ,
73
+ "type" : " boolean" ,
74
+ "default" : true
75
+ },
71
76
"exclude" : {
72
- "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#include-markdown_exclude " ,
77
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#exclude " ,
73
78
"type" : " array" ,
74
79
"items" : {
75
80
"type" : " string"
76
81
}
77
82
},
78
83
"cache" : {
79
- "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#configuration " ,
84
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#cache " ,
80
85
"type" : " integer" ,
81
86
"default" : 0
82
87
},
83
- "recursive" : {
84
- "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin#include_recursive" ,
85
- "type" : " boolean" ,
86
- "default" : true
88
+ "cache_dir" : {
89
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#cache_dir" ,
90
+ "type" : " string" ,
91
+ "default" : " .mkdocs-include-markdown-cache"
92
+ },
93
+ "directives" : {
94
+ "markdownDescription" : " https://github.com/mondeja/mkdocs-include-markdown-plugin?tab=readme-ov-file#directives" ,
95
+ "type" : " object" ,
96
+ "default" : {
97
+ "include" : " include" ,
98
+ "include-markdown" : " include-markdown"
99
+ }
87
100
}
88
101
},
89
102
"additionalProperties" : false
You can’t perform that action at this time.
0 commit comments