Plugin Directory

Changeset 2407107


Ignore:
Timestamp:
10/27/2020 12:28:03 AM (5 years ago)
Author:
mseminatore
Message:

added UDP keywords

Location:
add-verilog-brush-syntaxhighlighter-evolved/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • add-verilog-brush-syntaxhighlighter-evolved/trunk/readme.txt

    r2393904 r2407107  
    55Requires at least: 4.7
    66Tested up to: 5.5.1
    7 Stable tag: 1.0.8
     7Stable tag: 1.0.9
    88Requires PHP: 7.0
    99License: GPLv3
  • add-verilog-brush-syntaxhighlighter-evolved/trunk/shBrushVerilog.js

    r2393904 r2407107  
    77    {
    88   
    9         var datatypes = 'wire reg integer real ';
     9        var datatypes = 'wire reg integer real time ';
    1010
    11         var keywords =  'always assign begin case posedge else end endmodule for if negedge ' +
    12                         'inout 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';
    1414                   
    1515        var functions = 'and or nand nor not xor ';
  • add-verilog-brush-syntaxhighlighter-evolved/trunk/syntaxhighlighter-verilog.php

    r2393904 r2407107  
    44Description: Adds support for the Verilog language to the SyntaxHighlighter Evolved plugin.
    55Author: Mark Seminatore
    6 Version: 1.0.8
     6Version: 1.0.9
    77Author URI: https://fpgacoding.com
    88*/
     
    1717// Register the brush file with WordPress
    1818function 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 );
    2020}
    2121 
Note: See TracChangeset for help on using the changeset viewer.