diff options
author | Vlad Yaroslavlev <vladon@vladon.com> | 2022-02-10 16:46:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:23 +0300 |
commit | 706b83ed7de5a473436620367af31fc0ceecde07 (patch) | |
tree | 103305d30dec77e8f6367753367f59b3cd68f9f1 /library/cpp/messagebus/www/html_output.h | |
parent | 918e8a1574070d0ec733f0b76cfad8f8892ad2e5 (diff) | |
download | ydb-706b83ed7de5a473436620367af31fc0ceecde07.tar.gz |
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/messagebus/www/html_output.h')
-rw-r--r-- | library/cpp/messagebus/www/html_output.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/messagebus/www/html_output.h b/library/cpp/messagebus/www/html_output.h index 27e77adefa..551f0ba693 100644 --- a/library/cpp/messagebus/www/html_output.h +++ b/library/cpp/messagebus/www/html_output.h @@ -29,7 +29,7 @@ struct THtmlOutputStreamPushPop { }; struct TChars { - TString Text; + TString Text; bool NeedEscape; TChars(TStringBuf text) @@ -53,7 +53,7 @@ struct TChars { { } - TString Escape() { + TString Escape() { if (NeedEscape) { return EncodeHtmlPcdata(Text); } else { @@ -63,8 +63,8 @@ struct TChars { }; struct TAttr { - TString Name; - TString Value; + TString Name; + TString Value; TAttr(TStringBuf name, TStringBuf value) : Name(name) @@ -157,7 +157,7 @@ static inline void Small(TStringBuf text) { } static inline void HnWithSmall(unsigned n, TStringBuf title, TStringBuf small) { - TString tagName = ConcatStrings("h", n); + TString tagName = ConcatStrings("h", n); Open(tagName); HtmlOutputStream() << title; Sp(); @@ -268,7 +268,7 @@ static inline void Code(TStringBuf content) { } struct TTagGuard { - const TString TagName; + const TString TagName; TTagGuard(TStringBuf tagName, TStringBuf cssClass, TStringBuf id = "") : TagName(tagName) |