blob: 7bdd51aeec7f1c79377e04148231591b9305cea4 [file] [log] [blame]
// Copyright (c) 2018, 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 = HtmlUnescape();
print(unescape.convert('<strong>This "escaped" string '
'will be printed normally.</strong>'));
}