diff --git a/README.markdown b/README.markdown index 7daa584..ca85a85 100644 --- a/README.markdown +++ b/README.markdown @@ -84,7 +84,7 @@ Both will output the following HTML: ## Usage You need both the *markdown.php* and the *markdown_extended.php* files, but only needs to include *markdown_extended.php*. -```c +```PHP require_once('markdown_extended.php'); // Convert markdown formatted text in $markdown to HTML @@ -98,13 +98,13 @@ It is now possible to append default CSS classes to all tags of a specific type, It is done through the second argument to the `MarkdownExtended` function: -```c +```PHP $html = MarkdownExtended($markdown, array('tag' => 'css classes', 'anotherTag' => 'css classes')); ``` In the following example we add support for [Googles Javascript code prettifier](http://code.google.com/p/google-code-prettify/) by adding the *prettyprint* class to all `
` tags. 
 
-```c
+```PHP
 // Always add a 'prettyprint' to 
 elements
 $html = MarkdownExtended($markdown, array('pre' => 'prettyprint'));
 ```
\ No newline at end of file