added podman, json and yaml

This commit is contained in:
2022-11-27 19:11:46 +01:00
parent 01135dea09
commit 5226e858bb
790 changed files with 114578 additions and 16 deletions

View File

@ -0,0 +1,22 @@
import warnings
warnings.warn(
"mkdocs.commands.setup is never used in MkDocs and will be removed soon.", DeprecationWarning
)
try:
from mkdocs.commands.babel import (
compile_catalog,
extract_messages,
init_catalog,
update_catalog,
)
babel_cmdclass = {
'compile_catalog': compile_catalog,
'extract_messages': extract_messages,
'init_catalog': init_catalog,
'update_catalog': update_catalog,
}
except ImportError:
babel_cmdclass = {}