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

CSS to render markdown's blockquote #441

Closed
thibault-v opened this issue Apr 3, 2023 · 0 comments · Fixed by #442
Closed

CSS to render markdown's blockquote #441

thibault-v opened this issue Apr 3, 2023 · 0 comments · Fixed by #442

Comments

@thibault-v
Copy link
Contributor

thibault-v commented Apr 3, 2023

We can use markdown in most/all text editor of the website. The following (valid) markdown :

> this is my quote

Will generate the following (valid) html :

<blockquote>
<p>this is my quote</p>
</blockquote>

But, the incubator's CSS is not providing anything to render the "blockquote" tag :-/

I suggest that we add something like this in the website's css:

blockquote {
  padding-left: 10px;
  margin-left: 20px;
  border-left: solid;
  border-width: 2px;
  border-color: lightgrey;
  color: grey;
}
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

Successfully merging a pull request may close this issue.

1 participant