goldendict-ng/src/htmlescape.cc

86 lines
1.5 KiB
C++
Raw Normal View History

/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "htmlescape.hh"
namespace Html {
string escape( string const & str )
{
string result( str );
for( size_t x = result.size(); x--; )
switch ( result[ x ] )
{
case '&':
result.erase( x, 1 );
result.insert( x, "&amp;" );
break;
case '<':
result.erase( x, 1 );
result.insert( x, "&lt;" );
break;
case '>':
result.erase( x, 1 );
result.insert( x, "&gt;" );
break;
case '"':
result.erase( x, 1 );
result.insert( x, "&quot;" );
break;
default:
break;
}
return result;
}
string preformat( string const & str )
{
string escaped = escape( str ), result;
result.reserve( escaped.size() );
bool leading = true;
for( char const * nextChar = escaped.c_str(); *nextChar; ++nextChar )
{
if ( leading )
{
if ( *nextChar == ' ' )
{
result += "&nbsp;";
continue;
}
else
if ( *nextChar == '\t' )
{
result += "&nbsp;&nbsp;&nbsp;&nbsp;";
continue;
}
}
if ( *nextChar == '\n' )
{
result += "<br/>";
leading = true;
continue;
}
if ( *nextChar == '\r' )
continue; // Just skip all \r
result.push_back( *nextChar );
leading = false;
}
return result;
}
}