Show
Ignore:
Timestamp:
09/25/07 15:14:07 (16 months ago)
Author:
nyarla
Message:

lang/perl/Text-Nyarlax: I implemented parse of a list elements ( UnorderedList?, OrderedList?, DefinitionList? ) on Text::Nyarlax::Parser::PRD.
lang/perl/WebService-YouTube?: I canceled the wrong change.
lang/perl/Text-Nyarlax: I implemented parse of a BlockQuote? elements on Text::Nyarlax::Parser::PRD.
lang/perl/plagger: I imported making plugin files.

I changed it so that the attribute of the element might be merged in Text::Nyarlx::Util::join_node.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Text-Nyarlax/trunk/lib/Text/Nyarlax/Util.pm

    r108 r277  
    5959        ) { 
    6060            $prev->push_content( @{ $item->content } ); 
     61            for my $name ( keys %{ $item->attr } ) { 
     62                $prev->attr->{$name} = $item->attr->{$name} 
     63                    if ( ! $prev->attr->{$name} ); 
     64            } 
    6165        } 
    6266        elsif (