Skip to content

Commit

Permalink
fix(aio): correctly process markdown link in "Browser Support" (angul…
Browse files Browse the repository at this point in the history
…ar#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 angular#18312

PR Close angular#18349
  • Loading branch information
gkalpak authored and mhevery committed Jul 26, 2017
1 parent 205abe8 commit 67f7032
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions aio/content/guide/browser-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ Angular supports most recent browsers. This includes the following specific vers



Angular's continuous integration process runs unit tests of the framework on all of these browsers for every pull request,
using <a href="https://saucelabs.com/">SauceLabs</a> and
Angular's continuous integration process runs unit tests of the framework on all of these browsers for every pull request,
using <a href="https://saucelabs.com/">SauceLabs</a> and
<a href="https://www.browserstack.com">Browserstack</a>.


Expand All @@ -215,7 +215,7 @@ that implement missing features in JavaScript.



A particular browser may require at least one polyfill to run _any_ Angular application.
A particular browser may require at least one polyfill to run _any_ Angular application.
You may need additional polyfills for specific features.

The tables below can help you determine which polyfills to load, depending on the browsers you target and the features you use.
Expand All @@ -241,7 +241,7 @@ These are the polyfills required to run an Angular application on each supported
<table>

<tr style="vertical-align: top">

<th>
Browsers (Desktop & Mobile)
</th>
Expand All @@ -253,7 +253,7 @@ These are the polyfills required to run an Angular application on each supported
</tr>

<tr style="vertical-align: top">

<td>
Chrome, Firefox, Edge, Safari 9+
</td>
Expand All @@ -265,7 +265,7 @@ These are the polyfills required to run an Angular application on each supported
</tr>

<tr style="vertical-align: top">

<td>
Safari 7 & 8, IE10 & 11, Android 4.1+
</td>
Expand All @@ -279,7 +279,7 @@ These are the polyfills required to run an Angular application on each supported
</tr>

<tr style="vertical-align: top">

<td>
IE9
</td>
Expand Down Expand Up @@ -309,7 +309,7 @@ Here are the features which may require additional polyfills:
<table>

<tr style="vertical-align: top">

<th>
Feature
</th>
Expand All @@ -325,7 +325,7 @@ Here are the features which may require additional polyfills:
</tr>

<tr style="vertical-align: top">

<td>

[Animations](guide/animations)
Expand Down Expand Up @@ -363,14 +363,14 @@ Here are the features which may require additional polyfills:
</tr>

<tr style="vertical-align: top">

<td>

[NgClass](api/common/NgClass) on SVG elements
</td>

<td>


[classList](guide/browser-support#classlist)
</td>
Expand All @@ -382,16 +382,17 @@ Here are the features which may require additional polyfills:
</tr>

<tr style="vertical-align: top">

<td>

[Http](guide/http) when sending and receiving binary data
</td>

<td>


[Typed&nbsp;Array](guide/browser-support#typedarray) <br>[Blob](guide/browser-support#blob)<br>[FormData](guide/browser-support#formdata)
[Typed&nbsp;Array](guide/browser-support#typedarray)<br>
[Blob](guide/browser-support#blob)<br>
[FormData](guide/browser-support#formdata)
</td>

<td>
Expand All @@ -405,7 +406,7 @@ Here are the features which may require additional polyfills:


### Suggested polyfills ##
Below are the polyfills which are used to test the framework itself. They are a good starting point for an application.
Below are the polyfills which are used to test the framework itself. They are a good starting point for an application.


<table>
Expand Down Expand Up @@ -542,5 +543,5 @@ Below are the polyfills which are used to test the framework itself. They are a



\* Figures are for minified and gzipped code,
\* Figures are for minified and gzipped code,
computed with the <a href="http://closure-compiler.appspot.com/home">closure compiler</a>.

0 comments on commit 67f7032

Please sign in to comment.