Welcome Guest, Not a member yet? Register   Sign In
Anyone implemented geshi on their CI projects? Or another syntax highlighter?
#1

[eluser]manilodisan[/eluser]
As the title goes...Anyone implemented geshi on their CI projects? Or another syntax highlighter?
#2

[eluser]bAum[/eluser]
I just stumbled accross this posting doing a google search on the subject, its really not hard to do (taken from here):

All you need to do is copy "geshi.php" as well as the "geshi" folder into a new folder "application/plugins/geshi", and then to create a file "geshi_pi.php" within "application/plugins" with the following content:

Code:
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');

function colorize($source, $language)
{
require_once(APPPATH.'plugins/geshi/geshi.php');
$geshi = new GeSHi(html_entity_decode($source), $language);
$geshi->set_header_type('');
return $geshi->parse_code();
}
?>

That's it. To use it, you need load the plugin with $this->load->plugin(’geshi’) and can then play around with the colorize() function.




Theme © iAndrew 2016 - Forum software by © MyBB