prepre

		this.setOptions(options);
options = this.options;
this.id = options.id || this.name + '_' + $time();
this.codeblock = $(codeblock)
//this.code = codeblock.get('html').chop().replace(/&lt;/gim, '<').replace(/&gt;/gim, '>').replace(/&amp;/gim, '&');
this.container = $(this.options.container);

// Indent code if user option is set.
if (options.indent > -1) this.code = this.code.tabToSpaces(options.indent);

// Set builder options.
this.builder = new Hash({
'pre': this.createLighter.bind(this),
'ol': this.createLighterWithLines.pass([['ol'], ['li']], this),
'div': this.createLighterWithLines.pass([['div'], ['div', 'span'], true, 'span'], this),
'table': this.createLighterWithLines.pass([['table', 'tbody'], ['tr', 'td'], true, 'td'], this)
});

// Extract fuel/flame names. Precedence: className > options > standard.
var ff = this.codeblock.get('class').split(':');
if (!ff[0]) ff[0] = this.options.fuel;
if (!ff[1]) ff[1] = this.options.flame;

postpre