html_unescape 0.1.0 copy "html_unescape: ^0.1.0" to clipboard
html_unescape: ^0.1.0 copied to clipboard

outdatedDart 1 only

A small library for un-escaping HTML.

example/example.dart

// Copyright (c) 2016, <your name>. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'package:html_unescape/html_unescape.dart';

main() {
  var unescape = new HtmlUnescape();
  print(unescape.convert("&lt;strong&#62;This &quot;escaped&quot; string "
      "will be printed normally.</strong>"));
}