Skip to content

Commit

Permalink
Support for <h1> in Html class
Browse files Browse the repository at this point in the history
  • Loading branch information
simondsmart committed Jan 17, 2024
1 parent fd87a92 commit 33c6ab8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/eckit/web/Html.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,18 @@ class Html {
RawTag("</B>") {}
};

class BeginH1 : public RawTag {
public:
BeginH1() :
RawTag("<H1>") {}
};

class EndH1 : public RawTag {
public:
EndH1() :
RawTag("</H1>") {}
};

//----------------------------------------------------------------------------------------------------------------------

class BeginForm : public Tag {
Expand Down

0 comments on commit 33c6ab8

Please sign in to comment.