blob: 8a8fb61e191933b00f7b98d6e52c5a4bbff2e992 [file] [log] [blame]
// Copyright (c) 2016, Filip Hracek. 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';
void main() {
var unescape = new HtmlUnescape();
print(unescape.convert("<strong>This "escaped" string "
"will be printed normally.</strong>"));
}