escape some >s

This commit is contained in:
Kathy Walrath 2015-06-03 13:13:20 -07:00
parent 23fcb95fec
commit 8db6131ede
3 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@
code-example(language="dart").
class DisplayComponent {
String myName = 'Alice';
List<String> friendNames = const [
List<String> friendNames = const [
'Aarav',
'Martín',
'Shannon',
@ -238,7 +238,7 @@
@Injectable()
class FriendsService {
List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai'];
}
p.

View File

@ -78,7 +78,7 @@
and call <code>main.dart</code>.
code-example(language="html").
&lt;!-- web/index.html -->
&lt;!-- web/index.html --&gt;
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;

View File

@ -143,7 +143,7 @@
&lt;/ul&gt;
&lt;input #todotext (keyup)="doneTyping(\$event)"&gt;
&lt;button (click)="addTodo(todotext.value)"&gt;Add Todo&lt;/button>
&lt;button (click)="addTodo(todotext.value)"&gt;Add Todo&lt;/button&gt;
''', directives: const [NgFor])
class TodoList {
List&lt;String&gt; todos = [