Showcase Figure/Figcaption together and with image

Created on 21 August 2020, over 4 years ago
Updated 3 October 2024, 6 months ago

Problem/Motivation

As it is now, Styleguide by default shows the HTML tags <figure> and <figcaption> in isolation (as if they were inline tags, like <strong>) and with text:

    $items['figcaption'] = array(
      'title' => $this->t('Figcaption'),
      'content' => [
        '#type' => 'inline_template',
        '#template' => '{{ pre }} <figcaption>{{ figcaption }}</figcaption> {{ post }}.',
        '#context' => [
          'pre' => $this->generator->words(3, 'ucfirst'),
          'figcaption' => $this->generator->words(3),
          'post' => $this->generator->words(4),
        ],
      ],
    );
    $items['figure'] = array(
      'title' => $this->t('Figure'),
      'content' => [
        '#type' => 'inline_template',
        '#template' => '{{ pre }} <figure>{{ figure }}</figure> {{ post }}.',
        '#context' => [
          'pre' => $this->generator->words(3, 'ucfirst'),
          'figure' => $this->generator->words(3),
          'post' => $this->generator->words(4),
        ],
      ],
    );

I think this is not the best outcome, since those tags are required to be used together and <figure> is used to hold an image-like element, not text.

For reference, MDN states that

"The HTML or Figure Caption element represents a caption or legend describing the rest of the contents of its parent element." (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption)

And;

Usually a is an image, illustration, diagram, code snippet, etc., that is referenced in the main flow of a document, but that can be moved to another part of the document or to an appendix without affecting the main flow.(link)

As a result, the Styleguide is failing to provide with an accurate representation of the HTML element as it will be used in real code.

Proposed resolution

Merge both figure and figcaption under a single element, since they can't be found in isolation and <figcaption> is always the child of a <figure>.

Change the content of <figure> to include an image instead of text.

✨ Feature request
Status

Needs review

Version

1.0

Component

Code

Created by

πŸ‡ͺπŸ‡ΈSpain idiaz.roncero Madrid

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • First commit to issue fork.
  • πŸ‡ΊπŸ‡ΈUnited States dcam

    dcam β†’ changed the visibility of the branch 3166502-showcase-figurefigcaption-together to hidden.

  • πŸ‡ΊπŸ‡ΈUnited States dcam
  • Merge request !21Merge the figure and figcaption items β†’ (Open) created by dcam
  • Pipeline finished with Success
    6 months ago
    Total: 177s
    #300278
  • πŸ‡ΊπŸ‡ΈUnited States dcam

    +1 for this. I converted the patch in #4 to an MR. There's no need to give me credit for doing that.

    My accessibility validator was also complaining about the <figcaption> outside of a <figure> element because it doesn't like invalid HTML. To be honest, this was going to be one of the things that I let go, but then I found this open issue. Applying the changes stopped that error. The patch looks good. The resulting HTML looks good. I don't know that there's much more to say about it. RTBC from me.

    I'm reclassifying this as a bug report with normal priority since this causes an HTML validation error that may impact things like automatic scanning tools.

Production build 0.71.5 2024