Plugin Directory

Changeset 376071


Ignore:
Timestamp:
04/22/2011 07:28:12 PM (15 years ago)
Author:
apollox2
Message:
 
Location:
syntaxhighlighter-evolved-applescript
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • syntaxhighlighter-evolved-applescript/trunk/readme.txt

    r376044 r376071  
    55Requires at least: 2.7
    66Tested up to: 3.1.1
    7 Stable tag: 1.2.0
     7Stable tag: 1.3.0
    88
    9 Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin.
     9Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin using [applescript] and [as] tags.
    1010
    1111== Description ==
     
    2929###Plugin Usage###
    3030
    31 Just wrap your code in [applescript], such as [applescript]code here[/applescript].
     31Just wrap your code in [applescript], such as [applescript]code here[/applescript] or [as]code here[/as].
    3232
    3333The shortcodes accept a wide variety of parameters. For details, see the bottom of the SyntaxHighlighter Evolved's settings page.
     
    4141== Screenshots ==
    4242
    43 This is a sample image of the plugin in action using as applied to AppleScript code.
     431. This is a sample image of the plugin in action using as applied to AppleScript code.
    4444
    4545== Changelog ==
     46
     47= 1.3.0 =
     48* Added support for accessing plugin via [as].
    4649
    4750= 1.2.0 =
  • syntaxhighlighter-evolved-applescript/trunk/syntaxhighlighter-applescript.php

    r376043 r376071  
    44Description: Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin.
    55Author: Scott Selikoff
    6 Version: 1.2.0
     6Version: 1.3.0
    77Author URI: http://www.selikoff.net/
    88*/
     
    2323function syntaxhighlighter_applescript_addlang( $brushes ) {
    2424    $brushes['applescript'] = 'applescript';
    25     //$brushes['applescript'] = 'as';
     25    $brushes['as'] = 'applescript';
    2626    return $brushes;
    2727}
Note: See TracChangeset for help on using the changeset viewer.