Changeset 2823154
- Timestamp:
- 11/23/2022 08:19:42 PM (3 years ago)
- Location:
- add-verilog-brush-syntaxhighlighter-evolved/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
shBrushVerilog.js (modified) (1 diff)
-
syntaxhighlighter-verilog.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-verilog-brush-syntaxhighlighter-evolved/trunk/readme.txt
r2823151 r2823154 5 5 Requires at least: 4.7 6 6 Tested up to: 6.1.1 7 Stable tag: 1.0.1 77 Stable tag: 1.0.18 8 8 Requires PHP: 7.0 9 9 License: GPLv3 -
add-verilog-brush-syntaxhighlighter-evolved/trunk/shBrushVerilog.js
r2823149 r2823154 7 7 { 8 8 9 var datatypes = 'wire reg integer real time logic ';9 var datatypes = 'wire reg integer real time logic tri '; 10 10 11 11 var keywords = 'always assign begin case casex casez default else end endcase endfunction endmodule endprimitive endtable endtask ' + -
add-verilog-brush-syntaxhighlighter-evolved/trunk/syntaxhighlighter-verilog.php
r2823151 r2823154 4 4 Description: Adds support for the Verilog language to the SyntaxHighlighter Evolved plugin. 5 5 Author: Mark Seminatore 6 Version: 1.0.1 76 Version: 1.0.18 7 7 Author URI: https://fpgacoding.com 8 8 */ … … 17 17 // Register the brush file with WordPress 18 18 function syntaxhighlighter_verilog_regscript() { 19 wp_register_script( 'syntaxhighlighter-brush-verilog', plugins_url( 'shBrushVerilog.js', __FILE__ ), array('syntaxhighlighter-core'), '1.0.1 7', true );19 wp_register_script( 'syntaxhighlighter-brush-verilog', plugins_url( 'shBrushVerilog.js', __FILE__ ), array('syntaxhighlighter-core'), '1.0.18', true ); 20 20 } 21 21
Note: See TracChangeset
for help on using the changeset viewer.