diff options
Diffstat (limited to 'src/table.cc')
-rw-r--r-- | src/table.cc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/table.cc b/src/table.cc index 188becbc..859b1063 100644 --- a/src/table.cc +++ b/src/table.cc @@ -245,6 +245,31 @@ void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize) } /* + * <tbody> + */ +void Html_tag_open_tbody(DilloHtml *html, const char *tag, int tagsize) +{ +} + +void Html_tag_content_tbody(DilloHtml *html, const char *tag, int tagsize) +{ +} + +/* + * <tfoot> + */ +void Html_tag_open_tfoot(DilloHtml *html, const char *tag, int tagsize) +{ +} + +/* + * <thead> + */ +void Html_tag_open_thead(DilloHtml *html, const char *tag, int tagsize) +{ +} + +/* * <TH> */ void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize) |