diff options
Diffstat (limited to 'mkdocs.yml')
-rw-r--r-- | mkdocs.yml | 40 |
1 files changed, 32 insertions, 8 deletions
@@ -1,6 +1,6 @@ --- site_name: Ansible Lint Documentation -site_url: https://ansible-lint.readthedocs.io/ +site_url: https://ansible.readthedocs.io/projects/lint/ repo_url: https://github.com/ansible/ansible-lint edit_uri: blob/main/docs/ copyright: Copyright © 2023 Red Hat, Inc. @@ -13,13 +13,28 @@ extra_css: theme: name: ansible features: - - content.code.copy + - announce.dismiss - content.action.edit + - content.action.view + - content.code.annotate + - content.code.copy + - content.tabs.link + - content.tooltips + - header.autohide - navigation.expand - - navigation.sections - - navigation.instant + - navigation.footer - navigation.indexes + - navigation.instant + - navigation.path + - navigation.prune + - navigation.sections + - navigation.tabs + - navigation.tabs.sticky + - navigation.top - navigation.tracking + - search.highlight + - search.share + - search.suggest - toc.integrate extra: social: @@ -46,17 +61,20 @@ extra: name: GitHub nav: - - User Guide: + - Home: - home: index.md - - philosophy.md - - installing.md + - Philosophy: philosophy.md - usage.md + - Setup: + - installing.md - configuring.md - profiles.md + - autofix.md - Rules: - index: rules/index.md - rules/args.md - rules/avoid-implicit.md + - rules/complexity.md - rules/command-instead-of-module.md - rules/command-instead-of-shell.md - rules/deprecated-bare-vars.md @@ -108,12 +126,18 @@ nav: - Contributing: contributing.md - custom-rules.md +exclude_docs: | + _autofix_rules.md + plugins: - autorefs + - macros: + modules: [mkdocs-ansible:mkdocs_ansible] + render_by_default: false - markdown-exec - gen-files: scripts: - - src/ansiblelint/generate_docs.py + - tools/generate_docs.py - material/search: separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])' - material/social |