mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix missing html tag start
This commit is contained in:
parent
1b823751e6
commit
8792f56ebd
1 changed files with 2 additions and 1 deletions
|
@ -433,7 +433,8 @@ static NSMutableSet *textNodes = nil;
|
|||
/* Declaration */
|
||||
[buf appendString: @"<!DOCTYPE html PUBLIC "];
|
||||
[buf appendString: @"\"-//W3C//DTD HTML 4.01//EN\"\n"];
|
||||
[buf appendString:@"\"http://www.w3.org/TR/html4/strict.dtd\">"];
|
||||
[buf appendString:@"\"http://www.w3.org/TR/html4/strict.dtd\">\n"];
|
||||
[buf appendString: @"<html lang=\"en\">"]; // if we support multi-lang doc, this should be dynamic
|
||||
|
||||
[self incIndent];
|
||||
[self outputNodeList: node to: buf];
|
||||
|
|
Loading…
Reference in a new issue