| 42 | static std::string html_table_end() { return "</TABLE>>"; } |
| 43 | |
| 44 | static std::string html_cell(const std::string& content, const std::string& align = "center") |
| 45 | { |
| 46 | return "<TR ALIGN=\"" + align + "\"><TD>" + content + "</TD></TR>"; |
| 47 | } |
| 48 | |
| 49 | static bool is_hex_color(std::string color) { return not color.empty() and color[0] == '#'; } |
| 50 |