all repos — h3rald @ a44804dfee4d083d524c3efbd9cd3ac3cd193f44

The sources of https://h3rald.com

lib/bbcode_filter.rb

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
require 'rubygems'
require 'bb-ruby'

class BbcodeFilter < Nanoc::Filter
	identifier :bbcode

	def run(content)
		content.bbcode_to_html
	end

end