html_unescape 0.1.1 html_unescape: ^0.1.1 copied to clipboard
A small library for un-escaping HTML.
// 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("<strong>This "escaped" string "
"will be printed normally.</strong>"));
}