| 172 | } |
| 173 | |
| 174 | void |
| 175 | sub_title(ostream& os, const string& title, int size) |
| 176 | { |
| 177 | ostringstream h; |
| 178 | h << "h" << size; |
| 179 | os << "<" << h.str() << ">" << escape(title) << "</" << h.str() << ">\n"; |
| 180 | } |
| 181 | |
| 182 | void |
| 183 | sub_title(ostream& os, const string& title, int size, const string& mark) |
no test coverage detected