Files

Jekyll::Converter

Public Class Methods

new(config = {}) click to toggle source

Initialize the converter.

Returns an initialized Converter.

# File lib/jekyll/converter.rb, line 30
def initialize(config = {})
  @config = config
end
pygments_prefix(pygments_prefix = nil) click to toggle source

Public: Get or set the pygments prefix. When an argument is specified, the prefix will be set. If no argument is specified, the current prefix will be returned.

pygments_prefix - The String prefix (default: nil).

Returns the String prefix.

# File lib/jekyll/converter.rb, line 10
def self.pygments_prefix(pygments_prefix = nil)
  @pygments_prefix = pygments_prefix if pygments_prefix
  @pygments_prefix
end
pygments_suffix(pygments_suffix = nil) click to toggle source

Public: Get or set the pygments suffix. When an argument is specified, the suffix will be set. If no argument is specified, the current suffix will be returned.

pygments_suffix - The String suffix (default: nil).

Returns the String suffix.

# File lib/jekyll/converter.rb, line 22
def self.pygments_suffix(pygments_suffix = nil)
  @pygments_suffix = pygments_suffix if pygments_suffix
  @pygments_suffix
end

Public Instance Methods

pygments_prefix() click to toggle source

Get the pygments prefix.

Returns the String prefix.

# File lib/jekyll/converter.rb, line 37
def pygments_prefix
  self.class.pygments_prefix
end
pygments_suffix() click to toggle source

Get the pygments suffix.

Returns the String suffix.

# File lib/jekyll/converter.rb, line 44
def pygments_suffix
  self.class.pygments_suffix
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.