• SIS Lab
  • >
  • Blog
  • >
  • Octopressに「続きを読む」のプラグイン導入

Octopressに「続きを読む」のプラグイン導入

更新日:2023.05.05 作成日:2013.04.24

Octopressに「続きを読む」のプラグイン導入

「続きを読む」ように、記事を折りたたむプラグインを導入。

Octopressなら、/plaginsディレクトリに 以下のpostmore.rbを設定する。

module PostMore
	def postmorefilter(input, url, text)
		if input.include? "
"
			input.split("
").first + "<p class='more'><a href='#{url}'>#{text}</a></p>"
		else
			input
		end
	end
end

Liquid::Template.register_filter(PostMore)

参考

Related contents