| Index: third_party/pkg/markdown/lib/src/util.dart
|
| diff --git a/third_party/pkg/markdown/lib/src/util.dart b/third_party/pkg/markdown/lib/src/util.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a6d52de8ac115bebf6e6bc8f85789f524c3c05b9
|
| --- /dev/null
|
| +++ b/third_party/pkg/markdown/lib/src/util.dart
|
| @@ -0,0 +1,8 @@
|
| +library markdown.util;
|
| +
|
| +/// Replaces `<`, `&`, and `>`, with their HTML entity equivalents.
|
| +String escapeHtml(String html) {
|
| + return html.replaceAll('&', '&')
|
| + .replaceAll('<', '<')
|
| + .replaceAll('>', '>');
|
| +}
|
|
|