1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Fixed linking of blog posts in navigation (temporary hack)

This commit is contained in:
squidfunk 2023-09-03 09:29:40 +02:00
parent acd47ab98e
commit 3f87fe0f5b
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
2 changed files with 32 additions and 8 deletions

View File

@ -174,10 +174,22 @@ class BlogPlugin(BasePlugin[BlogConfig]):
page = self.blog.file.page
self._attach_at(page.parent, page, self.blog)
# Update entrypoint in navigation (also part of the hack above)
self.blog.file.page = self.blog
for items in [self._resolve_siblings(self.blog, nav), nav.pages]:
items[items.index(page)] = self.blog
# Hack: update pages instances in navigation - this can also be removed
# once an already open pull request is merged - see https://t.ly/9C_Kz
for page in [self.blog, *self.blog.posts, *self.blog.views]:
assert isinstance(page, Page)
# Check if the page that we generated is identical to the page that
# is associated with the file - if it is, we're good
temp = page.file.page
if not temp or temp == page:
continue
# If not, MkDocs overwrote our page with a new instance, which we
# need to replace with the one we generated
page.file.page = page
for items in [self._resolve_siblings(page, nav), nav.pages]:
items[items.index(temp)] = page
# Attach posts to entrypoint without adding them to the navigation, so
# that the entrypoint is considered to be the active page for each post

View File

@ -174,10 +174,22 @@ class BlogPlugin(BasePlugin[BlogConfig]):
page = self.blog.file.page
self._attach_at(page.parent, page, self.blog)
# Update entrypoint in navigation (also part of the hack above)
self.blog.file.page = self.blog
for items in [self._resolve_siblings(self.blog, nav), nav.pages]:
items[items.index(page)] = self.blog
# Hack: update pages instances in navigation - this can also be removed
# once an already open pull request is merged - see https://t.ly/9C_Kz
for page in [self.blog, *self.blog.posts, *self.blog.views]:
assert isinstance(page, Page)
# Check if the page that we generated is identical to the page that
# is associated with the file - if it is, we're good
temp = page.file.page
if not temp or temp == page:
continue
# If not, MkDocs overwrote our page with a new instance, which we
# need to replace with the one we generated
page.file.page = page
for items in [self._resolve_siblings(page, nav), nav.pages]:
items[items.index(temp)] = page
# Attach posts to entrypoint without adding them to the navigation, so
# that the entrypoint is considered to be the active page for each post