Kaydet (Commit) 4bc2d7c3 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

html: line break <br/> - use XML style single element declaration

Change-Id: I2e2b7fb85bd272a45d973c29f792c54aa7be0a82
üst d42813db
......@@ -2524,7 +2524,8 @@ Writer& OutHTML_SwTxtNode( Writer& rWrt, const SwCntntNode& rNode )
if( 0x0a == c )
{
HTMLOutFuncs::FlushToAscii( rWrt.Strm(), aContext );
HTMLOutFuncs::Out_AsciiTag( rWrt.Strm(), OOO_STRING_SVTOOLS_HTML_linebreak );
HtmlWriter aHtml(rWrt.Strm());
aHtml.single(OOO_STRING_SVTOOLS_HTML_linebreak);
}
// #i120442#: if c is outside the unicode base plane output it as "&#******;"
else if( c > 0xffff)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment