Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/cypher
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: Cypher Mode for CodeMirror</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css" />
[6] Fix | Delete
<link rel="stylesheet" href="../../theme/neo.css" />
[7] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[8] Fix | Delete
<script src="cypher.js"></script>
[9] Fix | Delete
<style>
[10] Fix | Delete
.CodeMirror {
[11] Fix | Delete
border-top: 1px solid black;
[12] Fix | Delete
border-bottom: 1px solid black;
[13] Fix | Delete
}
[14] Fix | Delete
</style>
[15] Fix | Delete
<div id=nav>
[16] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[17] Fix | Delete
[18] Fix | Delete
<ul>
[19] Fix | Delete
<li><a href="../../index.html">Home</a>
[20] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[21] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[22] Fix | Delete
</ul>
[23] Fix | Delete
<ul>
[24] Fix | Delete
<li><a href="../index.html">Language modes</a>
[25] Fix | Delete
<li><a class=active href="#">Cypher Mode for CodeMirror</a>
[26] Fix | Delete
</ul>
[27] Fix | Delete
</div>
[28] Fix | Delete
[29] Fix | Delete
<article>
[30] Fix | Delete
<h2>Cypher Mode for CodeMirror</h2>
[31] Fix | Delete
<form>
[32] Fix | Delete
<textarea id="code" name="code">// Cypher Mode for CodeMirror, using the neo theme
[33] Fix | Delete
MATCH (joe { name: 'Joe' })-[:knows*2..2]-(friend_of_friend)
[34] Fix | Delete
WHERE NOT (joe)-[:knows]-(friend_of_friend)
[35] Fix | Delete
RETURN friend_of_friend.name, COUNT(*)
[36] Fix | Delete
ORDER BY COUNT(*) DESC , friend_of_friend.name
[37] Fix | Delete
</textarea>
[38] Fix | Delete
</form>
[39] Fix | Delete
<p><strong>MIME types defined:</strong>
[40] Fix | Delete
<code><a href="?mime=application/x-cypher-query">application/x-cypher-query</a></code>
[41] Fix | Delete
</p>
[42] Fix | Delete
<script>
[43] Fix | Delete
window.onload = function() {
[44] Fix | Delete
var mime = 'application/x-cypher-query';
[45] Fix | Delete
// get mime type
[46] Fix | Delete
if (window.location.href.indexOf('mime=') > -1) {
[47] Fix | Delete
mime = window.location.href.substr(window.location.href.indexOf('mime=') + 5);
[48] Fix | Delete
}
[49] Fix | Delete
window.editor = CodeMirror.fromTextArea(document.getElementById('code'), {
[50] Fix | Delete
mode: mime,
[51] Fix | Delete
indentWithTabs: true,
[52] Fix | Delete
smartIndent: true,
[53] Fix | Delete
lineNumbers: true,
[54] Fix | Delete
matchBrackets : true,
[55] Fix | Delete
autofocus: true,
[56] Fix | Delete
theme: 'neo'
[57] Fix | Delete
});
[58] Fix | Delete
};
[59] Fix | Delete
</script>
[60] Fix | Delete
[61] Fix | Delete
</article>
[62] Fix | Delete
[63] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function