From 55d527f69f271e82256142b9bd99c1e9ec36c743 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Sat, 21 May 2016 05:36:47 -0700 Subject: [PATCH 1/4] ts template-syntax.jade without docregion tags --- .../docs/ts/latest/guide/template-syntax.jade | 254 ------------------ 1 file changed, 254 deletions(-) diff --git a/public/docs/ts/latest/guide/template-syntax.jade b/public/docs/ts/latest/guide/template-syntax.jade index 8933106cb7..d9ce406b89 100644 --- a/public/docs/ts/latest/guide/template-syntax.jade +++ b/public/docs/ts/latest/guide/template-syntax.jade @@ -1,6 +1,5 @@ include ../_util-fns -// #docregion intro :marked Our Angular application manages what the user sees and does through the interaction of a Component class instance (the *component*) and its user-facing template. @@ -29,21 +28,17 @@ include ../_util-fns * [Template expression operators](#expression-operators) * [pipe](#pipe) * ["safe navigation operator" (?.)](#safe-navigation-operator) -// #enddocregion intro .l-sub-section :marked The [live example](/resources/live-examples/template-syntax/ts/plnkr.html) demonstrates all of the syntax and code snippets described in this chapter. -// #docregion html-1 .l-main-section :marked ## HTML HTML is the language of the Angular template. Our [QuickStart](../quickstart.html) application had a template that was pure HTML: -// #enddocregion html-1 +makeExample('template-syntax/ts/app/app.component.html', 'my-first-app')(format=".") -// #docregion html-2 :marked Almost all HTML syntax is valid template syntax. The `