Index: hatena_style.rb =================================================================== --- hatena_style.rb (リビジョン 37330) +++ hatena_style.rb (作業コピー) @@ -286,7 +286,7 @@ elsif str[0] == ?* t,b = *str.split(/\n/,2) @title = Hatena::Title.new(t) - @body = Hatena::BlockAndorInline.new(b, false) + @body = Hatena::BlockAndorInline.new(b||'', false) @to_s = t + "\n" + (b||'') else @to_s = str @@ -303,8 +303,10 @@ end end + private + def title_is_dummy? - @to_s[0] == ?* + @to_s[0] != ?* end end