| 431 | } |
| 432 | |
| 433 | bool WriteAnchor(ostream_wrapper& out, const std::string& str) { |
| 434 | out << "&"; |
| 435 | return WriteAliasName(out, str); |
| 436 | } |
| 437 | |
| 438 | bool WriteTag(ostream_wrapper& out, const std::string& str, bool verbatim) { |
| 439 | out << (verbatim ? "!<" : "!"); |
no test coverage detected