Plugin Directory

Changeset 144397


Ignore:
Timestamp:
08/10/2009 02:18:01 PM (17 years ago)
Author:
FractalizeR
Message:
 
Location:
wp-synhighlight/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-synhighlight/trunk/README.txt

    r144363 r144397  
    33Requires at least: 2.5
    44Tested up to: 2.8.2
    5 Stable tag: 0.96
     5Stable tag: 0.961
    66
    77Plugin provides syntax highlighting for about 116 programming languages via Geshi.
  • wp-synhighlight/trunk/modules/highlighter.php

    r144363 r144397  
    2727       
    2828        //Replacing invalidly formatted quotes
    29         $find [] = '/&#822(0|1);/';
     29        $find [] = '/&#822(0|1|2);/';
    3030        $replace [] = '"';
     31       
     32        $find [] = '/″/';
     33        $replace [] = '"';
     34       
     35        $find [] = '/′/';
     36        $replace [] = "'";
     37       
    3138        $find [] = '/&#821(6|7);/';
    3239        $replace [] = "'";
  • wp-synhighlight/trunk/wp-synhighlighter.php

    r144363 r144397  
    44Plugin URI: http://www.fractalizer.ru/freeware-projects/wordpress-plugins/wp-synhighlight/
    55Description: Syntax highlighting using shortcodes [codesyntax lang="php"] Your code goes here [/codesyntax]. Please see README.txt and screenshots for more information
    6 Version: 0.96
     6Version: 0.961
    77Author: Vladislav "FractalizeR" Rastrusny
    88Author URI: http://www.fractalizer.ru
Note: See TracChangeset for help on using the changeset viewer.