diff --git a/.gitignore b/.gitignore
index 4b2f4de9..ecc9d0ad 100644
--- a/.gitignore
+++ b/.gitignore
@@ -59,4 +59,4 @@ gradlew.bat
.project
.classpath
-.settings
+.settings
\ No newline at end of file
diff --git a/third_party/packages/mustache_template/CHANGELOG.md b/third_party/packages/mustache_template/CHANGELOG.md
index ed2daa26..a52bf907 100644
--- a/third_party/packages/mustache_template/CHANGELOG.md
+++ b/third_party/packages/mustache_template/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 2.0.6
+
+* Adds an example app.
+
## 2.0.5
* Updates metadata for move to https://github.com/flutter/core-packages.
diff --git a/third_party/packages/mustache_template/README.md b/third_party/packages/mustache_template/README.md
index cf4dab61..b6730979 100644
--- a/third_party/packages/mustache_template/README.md
+++ b/third_party/packages/mustache_template/README.md
@@ -1,3 +1,5 @@
+
+
# Mustache templates
A Dart library to parse and render [mustache templates](https://mustache.github.io/).
@@ -7,34 +9,32 @@ See the [mustache manual](https://mustache.github.io/mustache.5.html) for detail
This library passes all [mustache specification](https://github.com/mustache/spec/tree/master/specs) tests.
## Example usage
-```dart
-import 'package:mustache_template/mustache_template.dart';
-main() {
- var source = '''
- {{# names }}
+
+```dart
+ var source = '''
+ {{# names }}
{{ lastname }}, {{ firstname }}
- {{/ names }}
- {{^ names }}
- No names.
- {{/ names }}
- {{! I am a comment. }}
- ''';
-
- var template = Template(source, name: 'template-filename.html');
-
- var output = template.renderString({'names': [
- {'firstname': 'Greg', 'lastname': 'Lowe'},
- {'firstname': 'Bob', 'lastname': 'Johnson'}
- ]});
-
- print(output);
-}
+ {{/ names }}
+ {{^ names }}
+ No names.
+ {{/ names }}
+ {{! I am a comment. }}
+ ''';
+
+ var template = Template(source, name: 'template-filename.html');
+
+ String output = template.renderString({
+ 'names':