Changeset 746
- Timestamp:
- 05/15/06 18:20:29
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/Filter/HatenaKeywordTag.pm
r715 r746 17 17 my $body = $args->{entry}->body; 18 18 Encode::_utf8_off($body); # Hatena::Keyword's Bug? 19 my $keywords = Hatena::Keyword->extract($ body);19 my $keywords = Hatena::Keyword->extract($title . ' ' . $body); 20 20 my @terms = sort { $a->refcount <=> $b->refcount } @$keywords; 21 21 trunk/plagger/lib/Plagger/Plugin/Publish/HatenaBookmark.pm
r250 r746 16 16 ); 17 17 } 18 19 sub rule_hook { 'publish.entry.fixup' } 18 20 19 21 sub initialize {
