You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor adjustments, in particular, gets rid of custom styling in favor
of using plain markdown for pipe example. This fixes the layout for
some displays.
Followup to angular#2990
Copy file name to clipboardExpand all lines: public/docs/ts/latest/guide/architecture.jade
+12-13Lines changed: 12 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,11 @@ block includes
3
3
- var _library_module ='library module'
4
4
- var _at_angular ='@angular'
5
5
6
-
:marked
7
-
Angular is a framework for building client applications in HTML and
8
-
either JavaScript or a language like TypeScript that compiles to JavaScript.
9
-
10
-
blockangular-parts
6
+
blockangular-intro
11
7
:marked
8
+
Angular is a framework for building client applications in HTML and
9
+
either JavaScript or a language like TypeScript that compiles to JavaScript.
10
+
12
11
The framework consists of several libraries, some of them core and some optional.
13
12
14
13
:marked
@@ -568,15 +567,15 @@ block registering-providers
568
567
by implementing the lifecycle hook interfaces.
569
568
570
569
> [**Pipes**](pipes.html): Use pipes in your templates to improve the user experience by transforming values for display. Consider this `currency` pipe expression:
571
-
<divstyle="margin-left:40px">
572
-
code-example().
573
-
price | currency:'USD':true
574
-
</div>
575
-
:marked
576
-
> It displays a price of "42.33" as `$42.33`.
570
+
>
571
+
> > `price | currency:'USD':true`
572
+
>
573
+
> It displays a price of 42.33 as `$42.33`.
577
574
578
575
> [**Router**](router.html): Navigate from page to page within the client
579
576
application and never leave the browser.
580
577
581
-
> [**Testing**](testing.html): Run unit tests on your application parts as they interact with the Angular framework
582
-
using the _Angular Testing Platform_.
578
+
blockangular-feature-testing
579
+
:marked
580
+
> [**Testing**](testing.html): Run unit tests on your application parts as they interact with the Angular framework
0 commit comments