goldendict-ng/htmlescape.hh

35 lines
1 KiB
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __HTMLESCAPE_HH_INCLUDED__
#define __HTMLESCAPE_HH_INCLUDED__
2022-06-08 13:13:07 +00:00
#include <QString>
#include <string>
namespace Html {
using std::string;
// Replaces &, <, > and " by their html entity equivalents
// The " is not really required to be escaped in html, but is replaced anyway
// to make the result suitable for inserting as attributes' values.
string escape( string const & );
// Converts the given preformatted text to html. Each end of line is replaced by
// <br>, each leading space is converted to &nbsp;.
string preformat( string const &, bool baseRightToLeft = false );
// Escapes the given string to be included in JavaScript.
string escapeForJavaScript( string const & );
// Replace html entities
QString unescape( QString const & str, bool saveFormat = false );
2022-06-08 13:13:07 +00:00
QString fromHtmlEscaped( QString const & str);
string unescapeUtf8( string const & str, bool saveFormat = false );
}
#endif