From 67f7032321ce93d79b44dc053d7eada011aefaad Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 26 Jul 2017 13:42:38 +0300 Subject: [PATCH] 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 `` and the content contained whitespace, which caused the content to be interpreted as HTML and not markdown. Fixes #18312 PR Close #18349 --- aio/content/guide/browser-support.md | 35 ++++++++++++++-------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/aio/content/guide/browser-support.md b/aio/content/guide/browser-support.md index ffd69f560d..e5e20cfaff 100644 --- a/aio/content/guide/browser-support.md +++ b/aio/content/guide/browser-support.md @@ -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 SauceLabs and +Angular's continuous integration process runs unit tests of the framework on all of these browsers for every pull request, +using SauceLabs and Browserstack. @@ -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. @@ -241,7 +241,7 @@ These are the polyfills required to run an Angular application on each supported - + @@ -253,7 +253,7 @@ These are the polyfills required to run an Angular application on each supported - + @@ -265,7 +265,7 @@ These are the polyfills required to run an Angular application on each supported - + @@ -279,7 +279,7 @@ These are the polyfills required to run an Angular application on each supported - + @@ -309,7 +309,7 @@ Here are the features which may require additional polyfills:
Browsers (Desktop & Mobile)
Chrome, Firefox, Edge, Safari 9+
Safari 7 & 8, IE10 & 11, Android 4.1+
IE9
- + @@ -325,7 +325,7 @@ Here are the features which may require additional polyfills: - + - + @@ -382,16 +382,17 @@ Here are the features which may require additional polyfills: - +
Feature
[Animations](guide/animations) @@ -363,14 +363,14 @@ Here are the features which may require additional polyfills:
[NgClass](api/common/NgClass) on SVG elements - + [classList](guide/browser-support#classlist)
- + [Http](guide/http) when sending and receiving binary data - - [Typed Array](guide/browser-support#typedarray)
[Blob](guide/browser-support#blob)
[FormData](guide/browser-support#formdata) + [Typed Array](guide/browser-support#typedarray)
+ [Blob](guide/browser-support#blob)
+ [FormData](guide/browser-support#formdata)
@@ -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. @@ -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 closure compiler.