| 2758 | |
| 2759 | |
| 2760 | void XMLPrinter::PushUnknown( const char* value ) |
| 2761 | { |
| 2762 | SealElementIfJustOpened(); |
| 2763 | if ( _textDepth < 0 && !_firstElement && !_compactMode) { |
| 2764 | Putc( '\n' ); |
| 2765 | PrintSpace( _depth ); |
| 2766 | } |
| 2767 | _firstElement = false; |
| 2768 | |
| 2769 | Write( "<!" ); |
| 2770 | Write( value ); |
| 2771 | Putc( '>' ); |
| 2772 | } |
| 2773 | |
| 2774 | |
| 2775 | bool XMLPrinter::VisitEnter( const XMLDocument& doc ) |