Applied Research Equity

Features

guide

JSFiddle

Code

Highlight certain blocks of lines

// this is a command
function myCommand() {
	let counter = 0;
	counter++;
}

// Comment here...
console.log('Test');

Highlight diffs

// this is some changed code
function doSomething() {
    let counter = 0;
    let counter = 100;
    counter++;
    counter--;
}

// Test with a line break above this line.
console.log('Test');