Upgraded to WordPress 2.0.2
Sunday, March 26th, 2006So far, all the basic functionality seems to be fine. I just tried to use the Backup plug-in and it did’t do anything so I have to troubleshoot that. Not a big problem.
So far, all the basic functionality seems to be fine. I just tried to use the Backup plug-in and it did’t do anything so I have to troubleshoot that. Not a big problem.
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";
}