From 76d86d5a070c18db8d4b16d9d368ecc502c0dc8b Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Sun, 15 Mar 2020 13:29:33 -0400 Subject: [PATCH] docs: place download section in angular pipes to the top (#36073) This commit partially addresses #35459 PR Close #36073 --- aio/content/guide/pipes.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/pipes.md b/aio/content/guide/pipes.md index 780d687210..25047f9f1e 100644 --- a/aio/content/guide/pipes.md +++ b/aio/content/guide/pipes.md @@ -3,6 +3,12 @@ Every application starts out with what seems like a simple task: get data, transform them, and show them to users. Getting data could be as simple as creating a local variable or as complex as streaming data over a WebSocket. +
+ + For the sample app that this page describes, see the . + +
+ Once data arrives, you could push their raw `toString` values directly to the view, but that rarely makes for a good user experience. For example, in most use cases, users prefer to see a date in a simple format like @@ -16,8 +22,6 @@ In fact, you might like to apply them in your HTML templates as you do styles. Introducing Angular pipes, a way to write display-value transformations that you can declare in your HTML. -You can run the in Stackblitz and download the code from there. - ## Using pipes