vrana/jush

JUSH - JavaScript Syntax Highlighter

Maintainers

Package info

github.com/vrana/jush

Homepage

Language:JavaScript

pkg:composer/vrana/jush

Transparency log

Statistics

Installs: 2 721 115

Dependents: 8

Suggesters: 0

Stars: 28

Open Issues: 0

v2.2.1 2026-07-13 21:02 UTC

This package is auto-updated.

Last update: 2026-07-14 06:14:55 UTC


README

Highlights the full stack of PHP application starting with HTML, PHP, SQL and JavaScript code and ending with HTTP headers, php.ini settings or database variables.

Features

  • Highlights and links documentation in spaghetti code like nothing else: <?php mysql_query("SELECT 1"); ?>
  • Supported languages: everything related to PHP: HTML5, JS, CSS 3, SQL including variables (multiple dialects), php.ini directives, HTTP and e-mail headers, Apache config. Anything could be embedded into each other, e.g. header("Content-Type: text/html") or color: expression(parentNode.style.color).
  • Allows using HTML tags in source code (could be used for pointing out important parts): echo "This part is <b>important</b>.". Produces overlapping HTML tags in this case though.
  • Performance is a priority.
  • <textarea> syntax highlight.

Installation instructions

  1. Copy jush.css and jush.js into your directory.

  2. Add following snippet before the </body> tag in HTML file:

    <script src="jush.js"></script>
    <script>
    jush.style('jush.css');
    jush.highlight_tag('code');
    </script>

    All <code class="jush"> tags will be highlighted. Language is determined by the class name beginning with "jush-" (e.g. <code class="jush-js">). Default language is htm. It is also possible to use <code class="language-*">.

  3. If you want to enable dark mode, call jush.style('jush-dark.css'). To enable it only based on user preferences, call jush.style('jush-dark.css', '(prefers-color-scheme: dark)').

Alternatively call jush.highlight(language, text) to syntax highlight single text.

Command-line help reference

It is also possible to use JUSH for opening the appropriate documentation in a browser. On Windows, it is possible to run:

Syntax: WScript jush-help.wsf filename line column [tabsize] [word]
Example: WScript jush-help.wsf readme.html 2 2

The example should open a browser with documentation of the <html> tag which is at position 2:2 of this file.