aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/html/pcdata/pcdata.h
blob: 7dd741f53dce9dfe1c482ac9ec13d2b3eec89c1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <util/generic/fwd.h>

/// Converts a text into HTML-code. Special characters of HTML («<», «>», ...) replaced with entities.
TString EncodeHtmlPcdata(const TStringBuf str, bool qAmp = true);
void EncodeHtmlPcdataAppend(const TStringBuf str, TString& strout);

/// Reverse of EncodeHtmlPcdata()
TString DecodeHtmlPcdata(const TString& sz);