mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Fix block output to handle text nodes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11800 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2b0506e0c2
commit
478c41912d
1 changed files with 4 additions and 0 deletions
|
@ -1163,6 +1163,10 @@ NSLog(@"Element '%@' not implemented", name); // FIXME
|
|||
NSLog(@"Element 'embed' not supported");
|
||||
return [node next];
|
||||
}
|
||||
else if ([textNodes member: n] != nil)
|
||||
{
|
||||
return [self outputText: node to: buf];
|
||||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Non-block element '%@' in block ...", n);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue