Trotyl Yu
Trotyl Yu
## Example ```typescript () => ``` Should be equivalent to: ```html ```
## Example ```typescript () => 0} /> ``` Should be equivalent to: ```html ```
## Current Status Only `onEventName` and `on_eventName` being supported, resulting in listener to `eventName`. ## Expected Support `on-eventName` as well which conforms to Angular template syntax.
Integrate [`Directive`s](https://angular.io/api/core/Directive) with `render` function. ## API Design ```typescript function directive(type: Type): (value: any, extras?: object) => never ``` + `type`: the directive class; + `value`: main input value for...
Integrate [`Pipe`s](https://angular.io/api/core/Pipe) with `render` function. ## API Design ```typescript function pipe(type: Type): (value: any, ...extras: any[]) => never ``` + `type`: the pipe class; + `value`: the value passed to...
Remove duplicate `both`.
In the Content security part of [Template Syntax](https://angular.io/docs/ts/latest/guide/template-syntax.html) chapter, there is the content: ```html "{{evilTitle}}" is the interpolated evil title. "" is the property bound evil title. ``` It says...