-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Quote block: use block element to prevent "cite" from disappearing #9195
Conversation
I tested this and it fixes #9180 for me. |
@mtias What should we do here? I'm not sure why we switched from The important bit here is that |
It looks like that documentation may be out of date soon; <figure>
<blockquote>
"That monster custom, who all sense doth eat Of habit’s devil," <abbr title="et cetera">&c.</abbr> not in Folio
"What a falling off was there! From me, whose love was of that dignity That it went hand in hand even with the vow I made to her in marriage, and to decline Upon a wretch."
</blockquote>
<footer>
— <cite class="title">Shakespeare manual</cite> by <cite class="author">Frederick Gard Fleay</cite>, p19 (in Google Books)
</footer>
</figure> EDIT: More about that in this blog post which I actually think means that this change has been in the HTML5 spec for a while, not just the 5.3 draft. |
@chrisvanpatten Yep, both the HTML 5.1 and HTML 5.2 specifications have that example as well: |
@iseulde |
It looks like the most semantic option is using both: a |
@mtias Okay, but we can't use it as a wrapper tag with |
I believe we were working on this same issue in #8785 😕 |
This needs a decision I think, so I'm moving to 3.8 unless we get a decision before. |
Would it be possible to use Otherwise, i think I any case, Update: as @nfmohit-wpmudev mentioned, this really is a dup of #8773, which is proposing using |
@collinanderson The answer is yes, and there should be a |
Description
Should fix #9180. The quote blocks currently use
cite
tags as a container forRichText
, butcite
tags are inline tags, so this seems to have some buggy side effects. This branch is just for testing to see if everything works as expected. Maybe additionally we should switch back to usefooter
instead ofcite
.How has this been tested?
See #9180.
Screenshots
Types of changes
Checklist: