aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/error/compile/tplrt.ngdoc
diff options
context:
space:
mode:
authorPete Bacon Darwin2013-10-26 20:13:27 +0100
committerPete Bacon Darwin2013-10-26 20:14:08 +0100
commit0bbb9e6258bd60a2676a475acc92b13b2c3425dc (patch)
tree2c771d2fbe9bdd373120d8bd83871d4bb0f58a97 /docs/content/error/compile/tplrt.ngdoc
parent81d5bc860dde93be0f6be3193c23458a2ae9ff5c (diff)
downloadangular.js-0bbb9e6258bd60a2676a475acc92b13b2c3425dc.tar.bz2
docs(error/compile/tplrt): split long lines
Diffstat (limited to 'docs/content/error/compile/tplrt.ngdoc')
-rw-r--r--docs/content/error/compile/tplrt.ngdoc17
1 files changed, 12 insertions, 5 deletions
diff --git a/docs/content/error/compile/tplrt.ngdoc b/docs/content/error/compile/tplrt.ngdoc
index 95a0cd65..d39c9a4f 100644
--- a/docs/content/error/compile/tplrt.ngdoc
+++ b/docs/content/error/compile/tplrt.ngdoc
@@ -3,13 +3,16 @@
@fullName Invalid Template Root
@description
-When a directive is declared with `template` (or `templateUrl`) and `replace` mode on, the template must have exactly one root element.
-That is, the text of the template property or the content referenced by the templateUrl must be contained within a single html element.
+When a directive is declared with `template` (or `templateUrl`) and `replace` mode on, the template
+must have exactly one root element. That is, the text of the template property or the content
+referenced by the templateUrl must be contained within a single html element.
For example, '<p>blah <em>blah</em> blah</p>' instead of simply 'blah <em>blah</em> blah'.
-Otherwise, the replacement operation would result in a single element (the directive) being replaced with multiple elements or nodes, which is unsupported and not commonly needed in practice.
+Otherwise, the replacement operation would result in a single element (the directive) being replaced
+with multiple elements or nodes, which is unsupported and not commonly needed in practice.
For example a directive with definition:
+
```
myModule.directive('myDirective', function factory() {
return {
@@ -21,12 +24,16 @@ myModule.directive('myDirective', function factory() {
});
```
-And a template provided at URL `someUrl`. The template must be an html fragment that has only a single root element, like the `div` element in this template:
+And a template provided at URL `someUrl`. The template must be an html fragment that has only a
+single root element, like the `div` element in this template:
+
```
<div><b>Hello</b> World!</div>
```
-An an invalid template to be used with this directive is one that defines multiple root nodes or elements. For example:
+An an invalid template to be used with this directive is one that defines multiple root nodes or
+elements. For example:
+
```
<b>Hello</b> World!
```