We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the markup is roughly:
<div class="captionImage leftAlone"> <img src="people.jpg" width="123" height="456" alt="Team photo" /> <p class="caption leftAlone">From left to right: John, Karen, Richard</p> </div>
This should be represented by <figure> and <figcaption> elements:
<figure>
<figcaption>
<figure class="captionImage leftAlone"> <img src="people.jpg" width="123" height="456" alt="Team photo" /> <figcaption class="caption leftAlone">From left to right: John, Karen, Richard</figcaption> </figure>
The same applies to captions added to embedded videos.
The text was updated successfully, but these errors were encountered:
Initial PR: #1321. I need to rebase it and do a matching PR for framework
Sorry, something went wrong.
Are you still interested in this @kinglozzer?
No branches or pull requests
Currently the markup is roughly:
This should be represented by
<figure>
and<figcaption>
elements:The same applies to captions added to embedded videos.
PRs
The text was updated successfully, but these errors were encountered: