Martin Donath
Martin Donath
Closing, since this is now supported as mentioned in the comment above.
> Material for MkDocs has the same problem since this is a theme with a few plugins (search and debug for sure). Material for MkDocs is not a plain theme...
I talked to the maintainers of this repository and was told that it is perfectly possible to list the project multiple times in separate categories, only listing the respective plugin...
Couldn't you deduplicate total stars by grouping by `github_id` and/or `pypi_id`? https://github.com/mkdocs/catalog/blob/b88c86a00de86544f8a17e1c046fc9ec9b322bf3/projects.yaml#L64-L70
@oprypin friendly ping, since this is a pretty serious bug. As of MkDocs 1.5, the page title contains HTML, which does not only break our project Material for MkDocs, but...
The behavior of MkDocs 1.4 – filter HTML tags from page titles. __Edit__: If that is the new desired behavior, it should go into the docs and it should actually...
It might be an issue of ordering – the title processor will run before emoji is being processed, and then after the title processor removed all markup, emojis keeps adding...
The endgoal is to sanitize the `page.title` of any HTML tags. This is not done anymore due to some bug in the new title extraction processor. I'm not sure we...
I've investigated and think I know what the problem is: https://github.com/mkdocs/mkdocs/blob/f94ab3f62d0416d484d81a0c695c8ca86ab3b975/mkdocs/structure/pages.py#L439-L448 1. Anchors links are removed to omit "Permalink" being part of the extracted title 2. All tags are stripped...
Hmm. Can't we change the priority of Markdown extensions, so that the stashes are restored before the tags are stripped? IMHO, this would be a better solution, but I'm probably...