Class: HTML::Pipeline::BungoFilter

Inherits:
TextFilter
  • Object
show all
Defined in:
lib/html/pipeline/bungo/bungo_filter.rb

Instance Method Summary collapse

Instance Method Details

#callObject



4
5
6
7
8
9
10
11
# File 'lib/html/pipeline/bungo/bungo_filter.rb', line 4

def call
  html = @text
  html = ruby_fliter(html)
  html = emph_dot_fliter(html)
  html = bold_fliter(html)
  html.rstrip!
  html
end