From f80c6008afc7f8f3f95a34a91211c8b01fe9d50d Mon Sep 17 00:00:00 2001 From: Ferdinand Malcher Date: Sun, 11 Nov 2018 23:12:57 +0100 Subject: [PATCH] docs: Fix wrong quoting in SSR guide (#27057) PR Close #27057 --- aio/content/guide/universal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/universal.md b/aio/content/guide/universal.md index 78fbf9804d..49ed5071a7 100644 --- a/aio/content/guide/universal.md +++ b/aio/content/guide/universal.md @@ -62,7 +62,7 @@ Your app may have to launch faster to engage these users before they decide to d With Angular Universal, you can generate landing pages for the app that look like the complete app. The pages are pure HTML, and can display even if JavaScript is disabled. -The pages don't handle browser events, but they _do_ support navigation through the site using `[routerLink](guide/router#router-link)`. +The pages don't handle browser events, but they _do_ support navigation through the site using [`routerLink`](guide/router#router-link). In practice, you'll serve a static version of the landing page to hold the user's attention. At the same time, you'll load the full Angular app behind it.