Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions public/docs/ts/latest/glossary.jade
Original file line number Diff line number Diff line change
Expand Up @@ -518,16 +518,15 @@ a#N
.l-sub-section
:marked
An Angular pipe is a function that transforms input values to output values for
display in a [view](#view). Use the `!{_at}Pipe` !{_decoratorLink}
to associate the pipe function with a name. You then use that
name in your HTML to declaratively transform values on screen.

display in a [view](#view).
Here's an example that uses the built-in `currency` pipe to display
a numeric value in the local currency.

code-example(language="html" escape="html").
<label>Price: </label>{{product.price | currency}}

:marked
You can also write your own custom pipes.
Read more in the page on [pipes](!{docsLatest}/guide/pipes.html).

:marked
Expand Down