| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 
 | site_name: Python-Markdown
site_url: https://Python-Markdown.github.io/
repo_url: https://github.com/Python-Markdown/markdown
site_author: "The Python-Markdown Project"
copyright: "Copyright © 2010-2023"
use_directory_urls: false
watch: [markdown, scripts]
theme:
  name: nature
  icon: py.png
  release: !!python/name:markdown.__version__
  issue_tracker: https://github.com/Python-Markdown/markdown/issues
extra_css:
  - custom.css
  - mkdocstrings.css
nav:
  - Python-Markdown: index.md
  - Installation: install.md
  - Library Reference: reference.md
  - Command Line: cli.md
  - Extensions: extensions/index.md
  - Officially Supported Extensions:
      - Abbreviations: extensions/abbreviations.md
      - Admonition: extensions/admonition.md
      - Attribute Lists: extensions/attr_list.md
      - CodeHilite: extensions/code_hilite.md
      - Definition Lists: extensions/definition_lists.md
      - Extra: extensions/extra.md
      - Fenced Code Blocks: extensions/fenced_code_blocks.md
      - Footnotes: extensions/footnotes.md
      - Legacy Attributes: extensions/legacy_attrs.md
      - Legacy Emphasis: extensions/legacy_em.md
      - Meta-Data: extensions/meta_data.md
      - New Line to Break: extensions/nl2br.md
      - Markdown in HTML: extensions/md_in_html.md
      - Sane Lists: extensions/sane_lists.md
      - SmartyPants: extensions/smarty.md
      - Table of Contents: extensions/toc.md
      - Tables: extensions/tables.md
      - WikiLinks: extensions/wikilinks.md
  - Extension API: extensions/api.md
  - Test Tools: test_tools.md
  - API Reference: reference/
  - Contributing to Python-Markdown: contributing.md
  - Changelog: changelog.md
  - Authors: authors.md
not_in_nav: |
  change_log/
markdown_extensions:
  - extra
  - admonition
  - smarty
  - codehilite
  - toc:
      permalink: true
  - mdx_gh_links:
      user: Python-Markdown
      repo: markdown
plugins:
- search
- gen-files:
    scripts:
    - scripts/gen_ref_nav.py
- literate-nav:
    nav_file: SUMMARY.md
- section-index
- mkdocstrings:
    custom_templates: docs/templates
    handlers:
      python:
        import:
        - https://docs.python.org/3/objects.inv
        options:
          annotations_path: brief
          docstring_options:
            ignore_init_summary: true
          docstring_style: google
          docstring_section_style: list
          extensions:
          - scripts/griffe_extensions.py:DeprecatedExtension
          - scripts/griffe_extensions.py:PriorityTableExtension:
              paths:
                - markdown.preprocessors.build_preprocessors
                - markdown.blockprocessors.build_block_parser
                - markdown.treeprocessors.build_treeprocessors
                - markdown.inlinepatterns.build_inlinepatterns
                - markdown.postprocessors.build_postprocessors
          filters: ["!^_"]
          group_by_category: false
          heading_level: 1
          inherited_members: true
          members_order: source
          merge_init_into_class: true
          separate_signature: false
          show_root_heading: true
          show_object_full_path: true
          show_signature_annotations: true
          show_source: false
          show_symbol_type_heading: true
          show_symbol_type_toc: false
          signature_crossrefs: false
          summary: true
          source:
            repo: https://github.com/Python-Markdown/markdown
            tag: !!python/name:markdown.__version__
            title: "View source code on GitHub."
 |