Code Face Syntax Highlighter

Adds syntax hilighting for
blocks.

Author:Donald Sipe (profile at wordpress.org)
WordPress version required:
WordPress version tested:
Plugin version:1.0
Added to WordPress repository:23-02-2008
Last updated:23-02-2008
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://djsipe.com/
Total downloads:1 061
plugin download
Click to start download

This plugin is intended to provide on-demand syntax highlighting for programming code. It supports many programming languages. Code blocks are automatically detected within the HTML of your posts through JavaScript. Only
the needed language highlighting resources are loaded. Supported languages:
C++, C#, CSS, Delphi, Java, JavaScript, PHP, Python, Ruby, SQL, VB, XML/HTML.

This package includes the “syntaxhighlighter” project: http://www.dreamprojections.com/syntaxhighlighter

INSTALLATION

To install this plugin, unzip and copy the “codeface” directory into your
plugins directory. This is typically /wp-content/plugins.

Next, check that the theme you are using contains the following PHP function
call: “wp_footer();”. This will be typically found somewhere in the
“footer.php” file. If your theme doesn’t contain this call, copy the following code into your footer above the closing tag:

  <?php wp_footer(); ?> 

Finally, log into the WordPress Admin section and activate the plugin.

USAGE

To highlight the code syntax of a given post, open the post for editing. You should see two tabs “Visual” and “Code” above the rich text editor WordPress
provides. Click the “Code” tab. From there you can edit the HTML of your post.

To use code highlighting, you’ll have to wrap your example code in a

<

pre> or
tag and pick the CSS class name for your language (see class names
below). For example:

  <pre class="php-codeface">       <?php            require_once "myFile.php";       ?>   </pre> 

NOTE: It’s recommended you do NOT use tags in your posts. It
tends to freak out WordPress and you can end up loosing part or all of your
post.

Code Face supports syntax highlighting for many different languages. You can select the appropriate language by adding a “class” attribute to the

<

pre> or tag, like the example above. Here are the class names you can use and the language they represent:

    CSS Class Name      Language     ------------------  --------     cplusplus-codeface  C++     csharp-codeface     C#     css-codeface        CSS     delphi-codeface     Delphi     java-codeface       Java     js-codeface         JavaScript     python-codeface     Python     php-codeface        PHP     ruby-codeface       Ruby     sql-codeface        SQL     vb-codeface         VB     xml-codeface        XML     html-codeface       HTML (alias for XML) 

When you finish editing your post, save it. Code Face will automatically detect the code blocks and highlight them for you when you view it on the
front-end.