Class: Jekyll::Pseudo::Brush

Inherits:
Object
  • Object
show all
Defined in:
lib/jekyll-pseudo/brush.rb

Direct Known Subclasses

HtmlBrush, MockBrush

Instance Method Summary collapse

Instance Method Details

#comment(txt) ⇒ Object

format a comment



20
21
22
# File 'lib/jekyll-pseudo/brush.rb', line 20

def comment(txt)
  raise 'not implemented'
end

#fn(txt) ⇒ Object

format a function



10
11
12
# File 'lib/jekyll-pseudo/brush.rb', line 10

def fn(txt)
  raise 'not implemented'
end

#op(txt) ⇒ Object

format an operator



25
26
27
# File 'lib/jekyll-pseudo/brush.rb', line 25

def op(txt)
  raise 'not implemented'
end

#plain(txt) ⇒ Object

render plain text



35
36
37
# File 'lib/jekyll-pseudo/brush.rb', line 35

def plain(txt)
  raise 'not implemented'
end

#string(txt) ⇒ Object

format a string



30
31
32
# File 'lib/jekyll-pseudo/brush.rb', line 30

def string(txt)
  raise 'not implemented'
end

#sym(txt) ⇒ Object

format a symbol



5
6
7
# File 'lib/jekyll-pseudo/brush.rb', line 5

def sym(txt)
  raise 'not implemented'
end

#var(txt, sub) ⇒ Object

format a variable



15
16
17
# File 'lib/jekyll-pseudo/brush.rb', line 15

def var(txt, sub)
  raise 'not implemented'
end