class Jekyll::PseudoCodeB::Brush

Public Instance Methods

comment(txt) click to toggle source

format a comment

# File lib/jekyll-pseudocode-b/brush.rb, line 30
def comment(txt)
  raise 'not implemented'
end
fn(txt) click to toggle source

format a function

# File lib/jekyll-pseudocode-b/brush.rb, line 10
def fn(txt)
  raise 'not implemented'
end
math(txt) click to toggle source

render math symbols

# File lib/jekyll-pseudocode-b/brush.rb, line 50
def math(txt)
  raise 'not implemented'
end
number(txt) click to toggle source
# File lib/jekyll-pseudocode-b/brush.rb, line 54
def number(txt)
  raise 'not implemented'
end
objfn(txt) click to toggle source

format a object call function

# File lib/jekyll-pseudocode-b/brush.rb, line 15
def objfn(txt)
  raise 'not implemented'
end
op(txt) click to toggle source

format an operator

# File lib/jekyll-pseudocode-b/brush.rb, line 35
def op(txt)
  raise 'not implemented'
end
plain(txt) click to toggle source

render plain text

# File lib/jekyll-pseudocode-b/brush.rb, line 45
def plain(txt)
  raise 'not implemented'
end
special(txt, sub) click to toggle source

format a special variable

# File lib/jekyll-pseudocode-b/brush.rb, line 25
def special(txt, sub)
  raise 'not implemented'
end
string(txt) click to toggle source

format a string

# File lib/jekyll-pseudocode-b/brush.rb, line 40
def string(txt)
  raise 'not implemented'
end
sym(txt) click to toggle source

format a symbol

# File lib/jekyll-pseudocode-b/brush.rb, line 5
def sym(txt)
  raise 'not implemented'
end
var(txt, sub) click to toggle source

format a variable

# File lib/jekyll-pseudocode-b/brush.rb, line 20
def var(txt, sub)
  raise 'not implemented'
end