-
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
[Markdown] [Web/API] Fix some unconvertible tables #8588
Conversation
<tr> | ||
<td class="header">Constant</td> | ||
<td class="header">Description</td> | ||
<th scope="col">Constant</th> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the scope="col"
on this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No good reason, just copy/paste.
@@ -33,8 +33,8 @@ <h2 id="Methods">Methods</h2> | |||
<table class="standard-table"> | |||
<thead> | |||
<tr> | |||
<th class="header" scope="col">Constant</th> | |||
<th class="header" scope="col">Description</th> | |||
<th scope="col">Constant</th> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the scope="col"
on this one?
</tr> | ||
</tbody> | ||
</table> | ||
<pre>void initMouseScrollEvent( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should remove the idl from this file, but no reason to do it in this PR. One day…
files/en-us/web/api/web_audio_api/basic_concepts_behind_web_audio_api/index.html
Show resolved
Hide resolved
You are entering into the complex cases world. I've noticed a few follow-ups to do (the old way of doing stuff), but no need to block this PR on these. |
Thanks @teoli2003 ! I will take a look at your comments later. There's some more context on this at #7898 (comment). |
Sure, renominate me for review once you have made the changes (especially if you do several commits) |
Nice! |
Part of #7898 .
This PR fixes some tables that didn't convert into Markdown. There are a few different strategies here:
<pre>
or a<dl>
seemed more appropriate<p>
tags inside cells, as GFM doesn't support block elements in cells