diff options
| author | Igor Minar | 2011-06-06 08:50:35 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-06-06 22:52:02 -0700 |
| commit | 7f1e2e48467f80cc083d24b44f088620e4e7bcb6 (patch) | |
| tree | 731a91366c5780985be6d4c5ddbe34e307d5cb70 /docs/content/guide/dev_guide.compiler.ngdoc | |
| parent | 5533e48dead5cff3107e72ee80bf0f19df77c1e9 (diff) | |
| download | angular.js-7f1e2e48467f80cc083d24b44f088620e4e7bcb6.tar.bz2 | |
new batch of docs
Diffstat (limited to 'docs/content/guide/dev_guide.compiler.ngdoc')
| -rw-r--r-- | docs/content/guide/dev_guide.compiler.ngdoc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/content/guide/dev_guide.compiler.ngdoc b/docs/content/guide/dev_guide.compiler.ngdoc new file mode 100644 index 00000000..08c40a56 --- /dev/null +++ b/docs/content/guide/dev_guide.compiler.ngdoc @@ -0,0 +1,35 @@ +@workInProgress +@ngdoc overview +@name Developer Guide: Angular HTML Compiler +@description + + +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. + + +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. + + +All compilation takes place in the web browser; no server is involved. + + + + +## Related Topics + + +* {@link dev_guide.compiler.understanding_compiler Understanding How the Compiler Works} +* {@link dev_guide.compiler.extending_compiler Extending the Angular Compiler} +* {@link dev_guide.compiler.testing_dom_element Testing a New DOM Element} +* {@link dev_guide.compiler.widgets Understanding Angular Widgets} +* {@link dev_guide.compiler.directives Understanding Angular Directives} +* {@link dev_guide.compiler.markup Understanding Angular Markup} + + +## Related API + + +* {@link api/angular.compile Angular Compiler API} |
