CodeMirror 2 - Highlight only (no editor)

JavascriptSyntax HighlightingCodemirror

Javascript Problem Overview


Can CodeMirror 2 be used to highlight code from a DIV or PRE tag (without the editor)?

Like CodeMirror 1 used to be able to do with the hightlightText() function? For example here: http://codemirror.net/1/highlight.html, after you press run highlight (the highlighted text below)

Also can it highlight code from a inline element, like <code>, and keep the results inline, like Google's Prettify does?

Javascript Solutions


Solution 1 - Javascript

A much nicer and easier solution is to just set the readOnly property of the CodeMirror instance to true, like this:

$('.code').each(function() {
    
    var $this = $(this),
        $code = $this.html();
   
    $this.empty();

    var myCodeMirror = CodeMirror(this, {
        value: $code,
        mode: 'javascript',
        lineNumbers: !$this.is('.inline'),
        readOnly: true
    });
    
});

Just add the class .code to the tag containing the code and it will be syntax highlighted. I've also added support for inline code, by using the class .inline.

http://jsfiddle.net/mofle/tZVsS/"><h2>Example on jsfiddle

Solution 2 - Javascript

As a somewhat late update, CodeMirror 2 recently gained this ability. See http://codemirror.net/demo/runmode.html

Solution 3 - Javascript

You should use a standalone code syntax highlighter: SyntaxHighlighter 3 works really well.

If you really want CodeMirror, there is a readOnly option:

var myCodeMirror = CodeMirror(function(elt) {
    myElement.parentNode.replaceChild(myElement, elt); // myElement is your <pre> or <div>
  }, {
    value: myElement.value,
    readOnly: true
  });

Solution 4 - Javascript

Actually you can't. Codemirror2 is written in the way that all implementation is hidden in closures. Public methods which can be used are described in documentation http://codemirror.net/manual.html<br> The only available options are to use anothe syntax highlighters or dive into the code of CodeMirror2 to strip necessary parts out.
If you will chose last option, please give attention to

function refreshDisplay(from, to) method

it loops through lines and highlights them.

Solution 5 - Javascript

Edit
Just realized a simpler method exists. Read method 2 below. I'm keeping the old method and its explanations intact and just include the improved jQuery code.


If you are asking about a native method of the package, the answer is no, it only works with textarea. But if you are open to using workarounds, here is one that works (tested).

I have used jQuery here, but its use is not a must and you can achieve the same with pure js code, though it would be longer and not as neat as jQuery code.

Now, let's get to the workaround.

Suppose you have a <pre> with code inside, that you want to turn into editor-less syntax-highlighted codemirror container:

<pre id="mycode">
<?php
  echo 'hi';
  $a = 10;
  if($a == 5) echo 'too small';
?>
</pre>

What you do is,

  1. change the <pre> to <textarea>,
  2. attach codemirror to the textarea,
  3. hide the fake cursor and keep it hidden, and
  4. do not allow the hidden codemirror's textarea grab the focus (and snatch it back when it does).

For the last action I have used the method suggested by Travis Webb. Here is the jQuery code that does these four things:

$(document).ready(function() {

    // (1) replace pre with textarea
	$('#mycode').replaceWith('<textarea id="code">' + $('#mycode').html() + '</textarea>');

    // (2) attach codemirror 
	var editor = CodeMirror.fromTextArea($("#code"), {
		lineNumbers: true,
		mode: "application/x-httpd-php"
	});
    
    // (3) hide the fake cursor    
	$('pre.CodeMirror-cursor').hide();

    // [4] textarea to grab and keep the focus
	$('body').append('<textarea id="tricky" style="height: 1px; position: fixed; width: 1px; top: 0; margin-top: -100px;" wrap="off"></textarea>');

    // (4) grab focus
	$('#tricky').focus();

    // [4] if focus is lost (probably to codemirror)
	$('#tricky').blur(function() {

            // (4) re-claim focus
            $('#tricky').focus();

            // (3) keep the fake cursor hidden
            $('pre.CodeMirror-cursor').hide();
	});

});

Method Two

Instead of wrestling with cursor and all that, we can remove the elements that make the editor tick. Here is the code:

$(document).ready(function() {
	$('#mycode').replaceWith('<textarea id="code">' + $('#mycode').html() + '</textarea>'); 
	var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
		lineNumbers: true,
		mode: "application/x-httpd-php"
	});
	
    $('pre.CodeMirror-cursor').remove();
    $('div.CodeMirror').find('textarea').blur().parent().remove();
    $('div.CodeMirror').find('pre:first').remove();
    $('textarea#code').remove();
});

Solution 6 - Javascript

CodeMirror V2 contains a runmode.js.

I've wrote an example using runmode with gutter.

check: http://jsfiddle.net/lyhcode/37vHL/2/

Solution 7 - Javascript

Heres an simpler solution using codemirror runmode and jquery:

<pre class='code'>{:message => 'sample code'}</pre>

$(document).ready(function() {
    $('.code').each(function(index, e) {
        $(e).addClass('cm-s-default'); // apply a theme class
        CodeMirror.runMode($(e).text(), "javascript", $(e)[0]);
    });
});

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAlexView Question on Stackoverflow
Solution 1 - JavascriptSindre SorhusView Answer on Stackoverflow
Solution 2 - JavascriptMarijnView Answer on Stackoverflow
Solution 3 - JavascriptbpierreView Answer on Stackoverflow
Solution 4 - JavascriptEldar DjafarovView Answer on Stackoverflow
Solution 5 - JavascriptMajid FouladpourView Answer on Stackoverflow
Solution 6 - JavascriptlyhcodeView Answer on Stackoverflow
Solution 7 - JavascriptdesheikhView Answer on Stackoverflow