git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@15163 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-11-28 07:19:48 +00:00
parent d3da613a53
commit bb19b604d0
4 changed files with 22 additions and 6 deletions

View file

@ -1805,9 +1805,11 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
}
else if ([n isEqual: @"example"] == YES)
{
[buf appendString: @"<pre>\n"];
[self outputText: [node firstChild] to: buf];
[buf appendString: @"\n</pre>\n"];
GSXMLNode *c = [node firstChild];
[buf appendString: @"<pre>"];
[self outputText: c to: buf];
[buf appendString: @"</pre>\n"];
return [node next];
}
else if ([n isEqual: @"embed"] == YES)