GithubHelp home page GithubHelp logo

nvdnkpr / highlight.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from highlightjs/highlight.js

0.0 2.0 0.0 3.43 MB

Javascript syntax highlighter

Home Page: http://highlightjs.org/

License: Other

highlight.js's Introduction

Highlight.js

Highlight.js highlights syntax in code examples on blogs, forums and, in fact, on any web page. It's very easy to use because it works automatically: finds blocks of code, detects a language, highlights it.

Autodetection can be fine tuned when it fails by itself (see "Heuristics").

Basic usage

Link the library and a stylesheet from your page and hook highlighting to the page load event:

<link rel="stylesheet" href="styles/default.css">
<script src="highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>

This will highlight all code on the page marked up as <pre><code> .. </code></pre>. If you use different markup or need to apply highlighting dynamically, read "Custom initialization" below.

  • You can download your own customized version of "highlight.pack.js" or use the hosted one as described on the download page: http://softwaremaniacs.org/soft/highlight/en/download/

  • Style themes are available in the download package or as hosted files. To create a custom style for your site see the class reference in the file classref.txt from the downloaded package.

node.js

Highlight.js can be used under node.js. The package with all supported languages is installable from NPM:

npm install highlight.js

Alternatively, you can build it from the source with only languages you need:

python3 tools/build.py -tnode lang1 lang2 ..

Using the library:

var hljs = require('highlight.js');

// If you know the language
hljs.highlight(lang, code).value;

// Automatic language detection
hljs.highlightAuto(code).value;

AMD

Highlight.js can be used with an AMD loader. You will need to build it from source in order to do so:

$ python3 tools/build.py -tamd lang1 lang2 ..

Which will generate a build/highlight.pack.js which will load as an AMD module with support for the built languages and can be used like so:

require(["highlight.js/build/highlight.pack"], function(hljs){

  // If you know the language
  hljs.highlight(lang, code).value;

  // Automatic language detection
  hljs.highlightAuto(code).value;
});

Tab replacement

You can replace TAB ('\x09') characters used for indentation in your code with some fixed number of spaces or with a <span> to give them special styling:

<script type="text/javascript">
  hljs.tabReplace = '    '; // 4 spaces
  // ... or
  hljs.tabReplace = '<span class="indent">\t</span>';

  hljs.initHighlightingOnLoad();
</script>

Custom initialization

If you use different markup for code blocks you can initialize them manually with highlightBlock(code, tabReplace, useBR) function. It takes a DOM element containing the code to highlight and optionally a string with which to replace TAB characters.

Initialization using, for example, jQuery might look like this:

$(document).ready(function() {
  $('pre code').each(function(i, e) {hljs.highlightBlock(e)});
});

You can use highlightBlock to highlight blocks dynamically inserted into the page. Just make sure you don't do it twice for already highlighted blocks.

If your code container relies on <br> tags instead of line breaks (i.e. if it's not <pre>) pass true into the third parameter of highlightBlock to make highlight.js use <br> in the output:

$('div.code').each(function(i, e) {hljs.highlightBlock(e, null, true)});

Heuristics

Autodetection of a code's language is done using a simple heuristic: the program tries to highlight a fragment with all available languages and counts all syntactic structures that it finds along the way. The language with greatest count wins.

This means that in short fragments the probability of an error is high (and it really happens sometimes). In this cases you can set the fragment's language explicitly by assigning a class to the <code> element:

<pre><code class="html">...</code></pre>

You can use class names recommended in HTML5: "language-html", "language-php". Classes also can be assigned to the <pre> element.

To disable highlighting of a fragment altogether use "no-highlight" class:

<pre><code class="no-highlight">...</code></pre>

Export

File export.html contains a little program that allows you to paste in a code snippet and then copy and paste the resulting HTML code generated by the highlighter. This is useful in situations when you can't use the script itself on a site.

Meta

For the license terms see LICENSE files. For the list of contributors see AUTHORS.en.txt file.

highlight.js's People

Contributors

isagalaev avatar sourrust avatar bolknote avatar sannis avatar lsegal avatar vast avatar vhbit avatar steplg avatar ericfromcanada avatar notheotherben avatar mojavelinux avatar raleksandar avatar mfornos avatar peter-leonov avatar rukeba avatar grigio avatar kelleyvanevert avatar seejohnrun avatar drdrang avatar caseman avatar vlasovskikh avatar stain avatar coagulant avatar grahack avatar dmitrybochkarev avatar arhibot avatar condemil avatar visoft avatar angelolloqui avatar piranha avatar

Watchers

Navid Nikpour avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.