MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / html_table_start

Function html_table_start

src/graphviz.cpp:34–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32static std::string html_bold(const std::string& content) { return "<B>" + content + "</B>"; }
33
34static std::string html_table_start(const html_table_style& style)
35{
36 return R"(<<TABLE BORDER=")" + std::to_string(style.border) + R"(" CELLBORDER=")" +
37 std::to_string(style.cellborder) + R"(" CELLPADDING=")" +
38 std::to_string(style.cellpadding) + R"(" CELLSPACING=")" +
39 std::to_string(style.cellspacing) + R"(" COLOR="transparent">)";
40}
41
42static std::string html_table_end() { return "</TABLE>>"; }
43

Callers 1

build_html_labelFunction · 0.85

Calls 1

to_stringFunction · 0.50

Tested by

no test coverage detected