1 2 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
|
from __future__ import annotations
import collections
import logging
from typing import TYPE_CHECKING
from mkdocs.plugins import BasePlugin
from mkdocs.structure.nav import Navigation, Section
from mkdocs.structure.pages import Page
from . import SectionPage, rewrites
if TYPE_CHECKING:
from jinja2 import Environment
try:
import properdocs.replacement_warning
# Warn when this plugin is being used from the mkdocs executable.
properdocs.replacement_warning.setup()
except ImportError:
pass
__all__ = ["SectionIndexPlugin"]
log = logging.getLogger(f"mkdocs.plugins.{__name__}")
class SectionIndexPlugin(BasePlugin):
def on_nav(self, nav: Navigation, config, files) -> Navigation:
todo = collections.deque((nav.items,))
while todo:
items = todo.popleft()
for i, section in enumerate(items):
if not isinstance(section, Section) or not section.children:
continue
todo.append(section.children)
page = section.children[0]
if not isinstance(page, Page):
continue
assert not page.children
if not page.title and page.url:
# The page becomes a section-page.
page.__class__ = SectionPage
assert isinstance(page, SectionPage)
page.is_section = page.is_page = True
page.title = section.title
page.parent = section.parent
# The page leaves the section but takes over children that used to be its peers.
section.children.pop(0)
page.children = section.children
for child in page.children:
child.parent = page
# The page replaces the section; the section will be garbage-collected.
items[i] = page
self._nav = nav
return nav
def on_env(self, env: Environment, config, files) -> Environment:
assert env.loader is not None
env.loader = self._loader = rewrites.TemplateRewritingLoader(env.loader)
return env
def on_page_context(self, context, page, config, nav):
if nav != self._nav:
self._nav = nav
log.warning(
"It seems that the effects of section-index plugin have been lost, because another MkDocs plugin re-wrote the nav! "
"Re-order `plugins` in mkdocs.yml so that 'section-index' appears closer to the end."
)
def on_post_build(self, config):
if not self._loader.found_supported_theme:
log.warning(
"section-index plugin couldn't detect a supported theme to adapt. "
"It probably won't work as expected. "
"See https://github.com/oprypin/mkdocs-section-index#theme-support"
)
|