-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
doc: fix order of end tags of list after heading #5874
doc: fix order of end tags of list after heading #5874
Conversation
Current html result of a list after heading is <div class="signature"><ul>...</div></ul>. Correct it to <div class="signature"><ul>...</ul></div>.
@nodejs/documentation |
Very nice :) Mind adding a test? |
I checked the differences of both results of the conversions for doc/api/*, before and after my modification. The only changes are from |
LGTM with or without a test. I'm not sure if there are even tests for the doc tool. |
Yeah, I just realized that there are no tests for the doc tool, I just assumed there were - sorry for the miscommunication. |
Thanks! Landed in 57a4dd9. |
Pull Request check-list
Please make sure to review and check all of these items:
make -j8 test
(UNIX) orvcbuild test nosign
(Windows) pass withthis change (including linting)?
If this change fixes a bug (or a performance problem), is a regressiontest (or a benchmark) included?
Is a documentation update included (if this change modifiesexisting APIs, or introduces new ones)?
NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Affected core subsystem(s)
Please provide affected core subsystem(s) (like buffer, cluster, crypto, etc)
Description of change
Please provide a description of the change here.
fixes #5873