escape some >s
This commit is contained in:
parent
23fcb95fec
commit
8db6131ede
|
@ -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.
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
and call <code>main.dart</code>.
|
||||
|
||||
code-example(language="html").
|
||||
<!-- web/index.html -->
|
||||
<!-- web/index.html -->
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
</ul>
|
||||
|
||||
<input #todotext (keyup)="doneTyping(\$event)">
|
||||
<button (click)="addTodo(todotext.value)">Add Todo</button>
|
||||
<button (click)="addTodo(todotext.value)">Add Todo</button>
|
||||
''', directives: const [NgFor])
|
||||
class TodoList {
|
||||
List<String> todos = [
|
||||
|
|
Loading…
Reference in New Issue