-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Block quotes are not working #65
Comments
Hello - I am also experiencing the same issue. |
Hey @ffunenga , I was able to address this by switching the theme to the material version. You might consider doing the same, as my block quotes appear to be working fine there. |
This is due to a change in Bootstrap specifications. From Bootstrap 4, the usage of |
I have this issue also and am using the material theme |
Adding some custom CSS in your configuration is a decent workaround for this in the short-term. Example: # mkdocs.yml
# ... your config
extra_css:
- some.css # some.css
blockquote {
background-color: black;
font-style: italic;
color: white;
padding: 1em;
} And, of course, style to taste. |
I installed mkdocs-bootswatch and tried several of the sub-themes, but the citations / block-quotes are not showing up in the web browser. For example, the following md:
results in the following:
In this example, I have used the
yeti
subtheme.The text was updated successfully, but these errors were encountered: