| 69 | } |
| 70 | |
| 71 | std::string build_html_label(const graphviz_node_content& content) |
| 72 | { |
| 73 | std::ostringstream ss; |
| 74 | |
| 75 | ss << html_table_start(content.html_style); |
| 76 | ss << html_cell(html_bold(content.title)); |
| 77 | |
| 78 | std::for_each(content.body_lines.begin(), |
| 79 | content.body_lines.end(), |
| 80 | [&ss](const std::string& line) { ss << html_cell(line); }); |
| 81 | |
| 82 | ss << html_table_end(); |
| 83 | return ss.str(); |
| 84 | } |
| 85 | |
| 86 | std::string build_node_style(const graphviz_node_style& node_style) |
| 87 | { |
no test coverage detected