Skip to content
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

Open
ffunenga opened this issue Apr 24, 2020 · 5 comments
Open

Block quotes are not working #65

ffunenga opened this issue Apr 24, 2020 · 5 comments

Comments

@ffunenga
Copy link

ffunenga commented Apr 24, 2020

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:

Hello, this is an example:

> And this is a citation

and this is a further paragraph.

results in the following:

image

In this example, I have used the yeti subtheme.

@jamesonl
Copy link

Hello - I am also experiencing the same issue.

@jamesonl
Copy link

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.

https://github.com/squidfunk/mkdocs-material

@fu-sen
Copy link

fu-sen commented Mar 22, 2021

This is due to a change in Bootstrap specifications. From Bootstrap 4, the usage of <blockquote> has changed.
https://getbootstrap.com/docs/4.5/content/typography/#blockquotes

@techabstraction
Copy link

I have this issue also and am using the material theme

@raymondberg
Copy link

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.

fanghuaqi added a commit to Nuclei-Software/nuclei-studio that referenced this issue Dec 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants