forked from angular/code.angularjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_guide.compiler.html
28 lines (22 loc) · 1.46 KB
/
dev_guide.compiler.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<h1>Developer Guide: Angular HTML Compiler</h1>
<div class="developer-guide-angular-html-compiler"><fieldset class="workInProgress"><legend>Work in Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.</fieldset>
<p>The core of angular is its HTML compiler. The compiler processes angular directives, widgets, and
markup to transform a static HTML page into a dynamic web application.</p>
<p>The default HTML transformations that the angular compiler provides are useful for building generic
apps, but you can also extend the compiler to create a domain-specific language for building
specific types of web applications.</p>
<p>All compilation takes place in the web browser; no server is involved.</p>
<h3>Related Topics</h3>
<ul>
<li><a href="#!/guide/dev_guide.compiler.understanding_compiler">Understanding How the Compiler Works</a></li>
<li><a href="#!/guide/dev_guide.compiler.extending_compiler">Extending the Angular Compiler</a></li>
<li><a href="#!/guide/dev_guide.compiler.testing_dom_element">Testing a New DOM Element</a></li>
<li><a href="#!/guide/dev_guide.compiler.widgets">Understanding Angular Widgets</a></li>
<li><a href="#!/guide/dev_guide.compiler.directives">Understanding Angular Directives</a></li>
<li><a href="#!/guide/dev_guide.compiler.markup">Understanding Angular Markup</a></li>
</ul>
<h3>Related API</h3>
<ul>
<li><a href="#!/api/angular.compile"><code>Angular Compiler API</code></a></li>
</ul></div>