Syntax highlighting for post/page editor

Anyone know of a plugin that adds syntax highlighting to the post/page HTML editor?

Thanks-

Related posts

Leave a Reply

5 comments

  1. I found a shortcode by @Bainternet in Ohad Raz weblog that can help you to build your sintax highlight own plugin, or just type it into your functions.php file theme.

    function bainternet_highlight($atts, $content = null) {
    extract(shortcode_atts(array(
        'color' => 'yellow',
        'font' => '#000000'
      ), $atts));
      return "<FONT style="BACKGROUND-COLOR: $color; color: $font">$content</font>";
    }
    add_shortcode('highlight','bainternet_highlight');
    

    Usage: [ highlight ] this text is highlighted [/highlight]

    Now, if you are searching for a MCE syntax highlightter, the best plugin I have found is the Advanced code Editor

    Hope that helped with your question.

  2. I was looking forever for the solution. I finally found this plugin which actually does a lot of things. But i only used the option to add a HTML button to the row of buttons which lets you edit post/page html with CodeMirror highlighting.