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

Blockquote pattern #6

Open
danburzo opened this issue Jul 30, 2021 · 2 comments
Open

Blockquote pattern #6

danburzo opened this issue Jul 30, 2021 · 2 comments

Comments

@danburzo
Copy link

Hi Stephanie, great idea & content! I learned about role='list' on <ul>.

I was recently curious about blockquote patterns and it seems that the recommendations have changed and the WHATWG HTML spec is not recommending <footer> in <blockquote> anymore, but rather something like:

<figure>
  <blockquote>quote</blockquote>
  <figcaption><cite>author</cite></figcaption>
</figure>
@Brixy
Copy link

Brixy commented Jul 30, 2021

Hi and thanks for your recipes.

An addition: cite is used to reference the title of a creative work.

So this might be more correct:

Author only

<figure>
  <blockquote>quote</blockquote>
  <figcaption>— author</figcaption>
</figure>

Author name and title of creative work

<figure>
  <blockquote>quote</blockquote>
  <figcaption>— author, <cite>title of creative work</cite></figcaption>
</figure>

@Stopa
Copy link

Stopa commented Dec 8, 2021

I came here to say just that!

Additionally, looking at the site, I was sondering if lorem ipsum is a good idea for placeholder text in these examples. Because they're focused on conveying the semantics and structure of information and lorem ipsum doesn't have those by design. For example, in the case of blockquote, "Laura Ipdo" reads like an author's name, but could just as well be the title of a work or anything else, so I wasn't sure if the pattern was conveyed correctly. An explanatory paragraph could help as well, but maybe having more "realistic" text in the patterns would help them speak for themselves?

Great resource, by the way, congrats on being included in the HTMHell advent calendar!

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

3 participants