Getting warmed up with WordPress

OK. I’m finally going to start blogging. I’m just going through the initial preparation phases and am configuring the environment. I’m going to try to use the Textile plugin for quick and easy text markup during posting. Textile 2.6b for beautifiers (Textile without the code markup) can then be used with GeshiSyntaxColorer for code markup!

…I’m actually having problems getting the Textile 2.6b plugin to workr with GeSHi. If I turn off Textile 2.6b, GeSHi works fine. Otherwise, instead of nicely formatted/colored code, I see all the HTML tags for the code.

This should be code formatted below

/*
This is a comment block
*/

//this formats and prints the contents of an array
print_r($some_array);

foreach($array as $key=>$value){
print "$key => $value";
}

Comments are closed.