-
|
Hello, I'd like to setup an MkDocs blog that gather posts from AFAIK, this is not possible because My use case is that I'd like to keep |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
You can create the directories within the |
Beta Was this translation helpful? Give feedback.
-
|
I found mkdocs-blogging-plugin to work with multiple dirs, and allow putting the blog list/category-specific list in any page with the In that plugin, categories are defined per-directory and the frontmatter-declared To demonstrate, I'll use the following tree: And the following plugins:
- blogging:
dirs:
- foo/notes
- articles
categories:
- name: notes
dirs:
- foo/notes
- name: articles
dirs:
- articlesNow both While I need further testing (esp. with compliance to |
Beta Was this translation helpful? Give feedback.

I found mkdocs-blogging-plugin to work with multiple dirs, and allow putting the blog list/category-specific list in any page with the
{{ blog_content <category-name> }}directive.In that plugin, categories are defined per-directory and the frontmatter-declared
categoriesseems to not matter. So for more organizations tags shall be used.To demonstrate, I'll use the following tree:
And the following
mkdocs.yml:plugins