-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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
Fix broken dd elements in JS docs #4625
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* upstream/main: Fix some typos: (mdn#4620) Fix information for fullscreenchange event (mdn#4603) FF89 large ArrayBuffers (mdn#4470) fix: HTML Validation issues (mdn#4612) Make warnings consistent in the JS docs (mdn#4609) fixed typo (mdn#4617) chore(deps): bump @mdn/yari from 0.4.412 to 0.4.413 (mdn#4616) chore(deps): bump technote-space/get-diff-action from v4.0.6 to v4.1.1 (mdn#4615)
sideshowbarker
approved these changes
Apr 30, 2021
13 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR aims to fix all the places in the JS docs that are incorrectly using multiple
<dd>
elements when they want to include multiple block elements in a single<dd>
, as noted in #4367 (comment).I'm guessing this is coming from the WYSIWYG editor in the old Wiki, where IIRC it was easy to add new
<dd>
elements by mistake.There are no places in the JS docs where the author really wanted to use multiple
<dd>
elements as far as I can see. So I think we might want to automate a mass-conversion of these across all our docs. It wasn't too bad doing it by hand, but it's easy to make mistakes.