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/xml
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: XML mode</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
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="xml.js"></script>
[8] Fix | Delete
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
[9] Fix | Delete
<div id=nav>
[10] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[11] Fix | Delete
[12] Fix | Delete
<ul>
[13] Fix | Delete
<li><a href="../../index.html">Home</a>
[14] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[15] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[16] Fix | Delete
</ul>
[17] Fix | Delete
<ul>
[18] Fix | Delete
<li><a href="../index.html">Language modes</a>
[19] Fix | Delete
<li><a class=active href="#">XML</a>
[20] Fix | Delete
</ul>
[21] Fix | Delete
</div>
[22] Fix | Delete
[23] Fix | Delete
<article>
[24] Fix | Delete
<h2>XML mode</h2>
[25] Fix | Delete
<form><textarea id="code" name="code">
[26] Fix | Delete
&lt;html style="color: green"&gt;
[27] Fix | Delete
&lt;!-- this is a comment --&gt;
[28] Fix | Delete
&lt;head&gt;
[29] Fix | Delete
&lt;title&gt;HTML Example&lt;/title&gt;
[30] Fix | Delete
&lt;/head&gt;
[31] Fix | Delete
&lt;body&gt;
[32] Fix | Delete
The indentation tries to be &lt;em&gt;somewhat &amp;quot;do what
[33] Fix | Delete
I mean&amp;quot;&lt;/em&gt;... but might not match your style.
[34] Fix | Delete
&lt;/body&gt;
[35] Fix | Delete
&lt;/html&gt;
[36] Fix | Delete
</textarea></form>
[37] Fix | Delete
<script>
[38] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[39] Fix | Delete
mode: "text/html",
[40] Fix | Delete
lineNumbers: true
[41] Fix | Delete
});
[42] Fix | Delete
</script>
[43] Fix | Delete
<p>The XML mode supports these configuration parameters:</p>
[44] Fix | Delete
<dl>
[45] Fix | Delete
<dt><code>htmlMode (boolean)</code></dt>
[46] Fix | Delete
<dd>This switches the mode to parse HTML instead of XML. This
[47] Fix | Delete
means attributes do not have to be quoted, and some elements
[48] Fix | Delete
(such as <code>br</code>) do not require a closing tag.</dd>
[49] Fix | Delete
<dt><code>matchClosing (boolean)</code></dt>
[50] Fix | Delete
<dd>Controls whether the mode checks that close tags match the
[51] Fix | Delete
corresponding opening tag, and highlights mismatches as errors.
[52] Fix | Delete
Defaults to true.</dd>
[53] Fix | Delete
<dt><code>alignCDATA (boolean)</code></dt>
[54] Fix | Delete
<dd>Setting this to true will force the opening tag of CDATA
[55] Fix | Delete
blocks to not be indented.</dd>
[56] Fix | Delete
</dl>
[57] Fix | Delete
[58] Fix | Delete
<p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/html</code>.</p>
[59] Fix | Delete
</article>
[60] Fix | Delete
[61] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function