Plugin Directory

Changeset 2823154


Ignore:
Timestamp:
11/23/2022 08:19:42 PM (3 years ago)
Author:
mseminatore
Message:

add tri state

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

Legend:

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

    r2823151 r2823154  
    55Requires at least: 4.7
    66Tested up to: 6.1.1
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.18
    88Requires PHP: 7.0
    99License: GPLv3
  • add-verilog-brush-syntaxhighlighter-evolved/trunk/shBrushVerilog.js

    r2823149 r2823154  
    77    {
    88   
    9         var datatypes = 'wire reg integer real time logic ';
     9        var datatypes = 'wire reg integer real time logic tri ';
    1010
    1111        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  
    44Description: Adds support for the Verilog language to the SyntaxHighlighter Evolved plugin.
    55Author: Mark Seminatore
    6 Version: 1.0.17
     6Version: 1.0.18
    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.17', true );
     19    wp_register_script( 'syntaxhighlighter-brush-verilog', plugins_url( 'shBrushVerilog.js', __FILE__ ), array('syntaxhighlighter-core'), '1.0.18', true );
    2020}
    2121 
Note: See TracChangeset for help on using the changeset viewer.