fix(aio): correctly process markdown link in "Browser Support" (#18349)
The markdown processor expects an empty line between an opening tag and the markdown content. (If there is no empty line, the content is interpreted as plain HTML.) Previously, the line between the opening `<td>` and the content contained whitespace, which caused the content to be interpreted as HTML and not markdown. Fixes #18312 PR Close #18349
This commit is contained in:
parent
205abe8140
commit
67f7032321
|
@ -390,8 +390,9 @@ Here are the features which may require additional polyfills:
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
|
|
||||||
|
[Typed Array](guide/browser-support#typedarray)<br>
|
||||||
[Typed Array](guide/browser-support#typedarray) <br>[Blob](guide/browser-support#blob)<br>[FormData](guide/browser-support#formdata)
|
[Blob](guide/browser-support#blob)<br>
|
||||||
|
[FormData](guide/browser-support#formdata)
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
|
|
Loading…
Reference in New Issue