Code highlighting plug-in Codemirror usage and download

Source: Internet
Author: User

Codemirror is a powerful syntax highlighting engine developed by javascript. It supports many languages, such as PHP, JS, HTML, and CSS. Here we will briefly introduce how to use Codemirror to configure your website to support code syntax highlighting.

Install

First, download the codemirror. js plug-in. Unzip the package and there are three directories: js, css, and contrib. contrib contains the parser developed by others, such as lua, python, and PHP. The css directory contains the highlighted syntax. Js contains the js Code to be run.

Basic usage

If we use textarea to generate the codemirror Editor, we can use the following code:

Copy to ClipboardReference: [www.bkjia.com] var textarea = document. getElementById ('code ');
Var editor = new jsonframe (CodeMirror. replace (textarea ),{
Height: "350px ",
Content: textarea. value,
Parserfile: ["tokenizejavascript. js", "parsejavascript. js"],
Stylesheet: "css/jscolors.css ",
Path: "js /",
AutoMatchParens: true
});

The result is as follows:

From: http://www.gbin1.com/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.