You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue is that the text inside h5 headers (class names, function names) is converted to uppercase.
Since there is a fix already in the mkdocs-material itself, which disables this uppercase formatting inside h5.code CSS class, maybe all the class/function names should have the .code class?
To Reproduce
Enable the show_submodules option and have a nested submodules structure, so h5 header will be created for class/function.
Description of the bug
It is similar/related to squidfunk/mkdocs-material#7734 which resulted in this fix
The issue is that the text inside h5 headers (class names, function names) is converted to uppercase.
Since there is a fix already in the
mkdocs-material
itself, which disables thisuppercase
formatting insideh5.code
CSS class, maybe all the class/function names should have the.code
class?To Reproduce
Enable the
show_submodules
option and have a nested submodules structure, soh5
header will be created for class/function.Like :
mypackage.exceptions.account_errors.AccountNotFoundError
Expected behavior
The class names (and function names) will be the same as in the python code. (so
AccountNotFoundError
and notACCOUNTNOTFOUNDERROR
)Environment information
Additional context
I think it is related to: squidfunk/mkdocs-material#1522 and squidfunk/mkdocs-material#7734, which resulted in this fix
The workaround seems to be:
defined in the
extra.css
The text was updated successfully, but these errors were encountered: