Changeset 2407107
- Timestamp:
- 10/27/2020 12:28:03 AM (5 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
r2393904 r2407107 5 5 Requires at least: 4.7 6 6 Tested up to: 5.5.1 7 Stable tag: 1.0. 87 Stable tag: 1.0.9 8 8 Requires PHP: 7.0 9 9 License: GPLv3 -
add-verilog-brush-syntaxhighlighter-evolved/trunk/shBrushVerilog.js
r2393904 r2407107 7 7 { 8 8 9 var datatypes = 'wire reg integer real ';9 var datatypes = 'wire reg integer real time '; 10 10 11 var keywords = 'always assign begin case posedge else end endmodule for if negedge' +12 'i nout input module forever endcase output parameter' +13 'repeat initial localparam';11 var keywords = 'always assign begin case casex casez default else end endcase endmodule for forever ' + 12 'if initial inout input localparam module negedge output parameter posedge ' + 13 'repeat table endtable primitive endprimitive'; 14 14 15 15 var functions = 'and or nand nor not xor '; -
add-verilog-brush-syntaxhighlighter-evolved/trunk/syntaxhighlighter-verilog.php
r2393904 r2407107 4 4 Description: Adds support for the Verilog language to the SyntaxHighlighter Evolved plugin. 5 5 Author: Mark Seminatore 6 Version: 1.0. 86 Version: 1.0.9 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. 8', true );19 wp_register_script( 'syntaxhighlighter-brush-verilog', plugins_url( 'shBrushVerilog.js', __FILE__ ), array('syntaxhighlighter-core'), '1.0.9', true ); 20 20 } 21 21
Note: See TracChangeset
for help on using the changeset viewer.