mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-06 08:54:40 +01:00
Fix: Enable mdx_truly_sane_lists in mkdocs.yml
The build workflow installs the `mdx_truly_sane_lists` pip package, but the extension was not enabled in the `mkdocs.yml` configuration file. This change enables the extension by uncommenting the relevant lines in `mkdocs.yml`, bringing the configuration in line with the build environment.
This commit is contained in:
parent
178949896f
commit
7d8aa8efc2
4 changed files with 1208 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
BuildPDF/
|
BuildPDF/
|
||||||
.vscode
|
.vscode
|
||||||
.todo
|
.todo
|
||||||
|
node_modules/
|
||||||
|
|
@ -62,9 +62,9 @@ markdown_extensions:
|
||||||
- pymdownx.emoji:
|
- pymdownx.emoji:
|
||||||
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
||||||
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
||||||
# - mdx_truly_sane_lists:
|
- mdx_truly_sane_lists:
|
||||||
# nested_indent: 2
|
nested_indent: 2
|
||||||
# truly_sane: True
|
truly_sane: True
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- search
|
- search
|
||||||
|
|
|
||||||
1197
package-lock.json
generated
Normal file
1197
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
6
package.json
Normal file
6
package.json
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"markdownlint": "^0.38.0",
|
||||||
|
"markdownlint-cli2": "^0.15.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue