Changeset 376071
- Timestamp:
- 04/22/2011 07:28:12 PM (15 years ago)
- Location:
- syntaxhighlighter-evolved-applescript
- Files:
-
- 9 added
- 2 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/readme.txt (added)
-
tags/1.3.0/screenshot-1.png (added)
-
tags/1.3.0/scripts (added)
-
tags/1.3.0/scripts/shBrushAppleScript.js (added)
-
tags/1.3.0/styles (added)
-
tags/1.3.0/styles/bg.png (added)
-
tags/1.3.0/styles/shThemeAppleScript.css (added)
-
tags/1.3.0/syntaxhighlighter-applescript.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/syntaxhighlighter-applescript.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
syntaxhighlighter-evolved-applescript/trunk/readme.txt
r376044 r376071 5 5 Requires at least: 2.7 6 6 Tested up to: 3.1.1 7 Stable tag: 1. 2.07 Stable tag: 1.3.0 8 8 9 Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin .9 Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin using [applescript] and [as] tags. 10 10 11 11 == Description == … … 29 29 ###Plugin Usage### 30 30 31 Just wrap your code in [applescript], such as [applescript]code here[/applescript] .31 Just wrap your code in [applescript], such as [applescript]code here[/applescript] or [as]code here[/as]. 32 32 33 33 The shortcodes accept a wide variety of parameters. For details, see the bottom of the SyntaxHighlighter Evolved's settings page. … … 41 41 == Screenshots == 42 42 43 This is a sample image of the plugin in action using as applied to AppleScript code.43 1. This is a sample image of the plugin in action using as applied to AppleScript code. 44 44 45 45 == Changelog == 46 47 = 1.3.0 = 48 * Added support for accessing plugin via [as]. 46 49 47 50 = 1.2.0 = -
syntaxhighlighter-evolved-applescript/trunk/syntaxhighlighter-applescript.php
r376043 r376071 4 4 Description: Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin. 5 5 Author: Scott Selikoff 6 Version: 1. 2.06 Version: 1.3.0 7 7 Author URI: http://www.selikoff.net/ 8 8 */ … … 23 23 function syntaxhighlighter_applescript_addlang( $brushes ) { 24 24 $brushes['applescript'] = 'applescript'; 25 //$brushes['applescript'] = 'as';25 $brushes['as'] = 'applescript'; 26 26 return $brushes; 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.