docs: separate template syntax into multiple docs (#36954)

This is part of a re-factor of template syntax and
structure. The first phase breaks out template syntax
into multiple documents. The second phase will be
a rewrite of each doc.

Specifically, this PR does the following:

- Breaks sections of the current template syntax document each into their own page.
- Corrects the links to and from these new pages.
- Adds template syntax subsection to the left side NAV which contains all the new pages.
- Adds the new files to pullapprove.

PR Close #36954
This commit is contained in:
Kapunahele Wong
2020-04-28 16:26:58 -04:00
committed by Andrew Kushnir
parent 5d3d8b8330
commit 5b31a0a294
40 changed files with 2511 additions and 2419 deletions

View File

@ -684,7 +684,7 @@ export interface InputDecorator {
* class App {}
* ```
*
* @see [Input and Output properties](guide/template-syntax#input-and-output-properties)
* @see [Input and Output properties](guide/inputs-outputs)
*/
(bindingPropertyName?: string): any;
new(bindingPropertyName?: string): any;
@ -728,7 +728,7 @@ export interface OutputDecorator {
*
* See `Input` decorator for an example of providing a binding name.
*
* @see [Input and Output properties](guide/template-syntax#input-and-output-properties)
* @see [Input and Output properties](guide/inputs-outputs)
*
*/
(bindingPropertyName?: string): any;