svnno****@sourc*****
svnno****@sourc*****
2009年 8月 15日 (土) 15:14:07 JST
Revision: 967 http://sourceforge.jp/projects/hiki/svn/view?view=rev&revision=967 Author: fdiary Date: 2009-08-15 15:14:06 +0900 (Sat, 15 Aug 2009) Log Message: ----------- * style/default/parser.rb (parse): use HikiDoc.to_html instead of HikiDoc#to_html. Modified Paths: -------------- hiki/trunk/ChangeLog hiki/trunk/style/default/parser.rb Modified: hiki/trunk/ChangeLog =================================================================== --- hiki/trunk/ChangeLog 2009-08-15 03:03:38 UTC (rev 966) +++ hiki/trunk/ChangeLog 2009-08-15 06:14:06 UTC (rev 967) @@ -1,3 +1,7 @@ +2009-08-15 Kazuhiko <kazuh****@fdiar*****> + * style/default/parser.rb (parse): use HikiDoc.to_html instead of + HikiDoc#to_html. + 2009-08-14 Kazuhiko <kazuh****@fdiar*****> * plugin/00default.rb (hiki_footer): display fcgi information in footer. Modified: hiki/trunk/style/default/parser.rb =================================================================== --- hiki/trunk/style/default/parser.rb 2009-08-15 03:03:38 UTC (rev 966) +++ hiki/trunk/style/default/parser.rb 2009-08-15 06:14:06 UTC (rev 967) @@ -24,7 +24,7 @@ end def parse( s, top_level = 2 ) - HikiDoc.new( s, :level => top_level ).to_html + HikiDoc.to_html( s, :level => top_level ) end end end