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/yaml
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: YAML 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="yaml.js"></script>
[8] Fix | Delete
<style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</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="#">YAML</a>
[20] Fix | Delete
</ul>
[21] Fix | Delete
</div>
[22] Fix | Delete
[23] Fix | Delete
<article>
[24] Fix | Delete
<h2>YAML mode</h2>
[25] Fix | Delete
<form><textarea id="code" name="code">
[26] Fix | Delete
--- # Favorite movies
[27] Fix | Delete
- Casablanca
[28] Fix | Delete
- North by Northwest
[29] Fix | Delete
- The Man Who Wasn't There
[30] Fix | Delete
--- # Shopping list
[31] Fix | Delete
[milk, pumpkin pie, eggs, juice]
[32] Fix | Delete
--- # Indented Blocks, common in YAML data files, use indentation and new lines to separate the key: value pairs
[33] Fix | Delete
name: John Smith
[34] Fix | Delete
age: 33
[35] Fix | Delete
--- # Inline Blocks, common in YAML data streams, use commas to separate the key: value pairs between braces
[36] Fix | Delete
{name: John Smith, age: 33}
[37] Fix | Delete
---
[38] Fix | Delete
receipt: Oz-Ware Purchase Invoice
[39] Fix | Delete
date: 2007-08-06
[40] Fix | Delete
customer:
[41] Fix | Delete
given: Dorothy
[42] Fix | Delete
family: Gale
[43] Fix | Delete
[44] Fix | Delete
items:
[45] Fix | Delete
- part_no: A4786
[46] Fix | Delete
descrip: Water Bucket (Filled)
[47] Fix | Delete
price: 1.47
[48] Fix | Delete
quantity: 4
[49] Fix | Delete
[50] Fix | Delete
- part_no: E1628
[51] Fix | Delete
descrip: High Heeled "Ruby" Slippers
[52] Fix | Delete
size: 8
[53] Fix | Delete
price: 100.27
[54] Fix | Delete
quantity: 1
[55] Fix | Delete
[56] Fix | Delete
bill-to: &id001
[57] Fix | Delete
street: |
[58] Fix | Delete
123 Tornado Alley
[59] Fix | Delete
Suite 16
[60] Fix | Delete
city: East Centerville
[61] Fix | Delete
state: KS
[62] Fix | Delete
[63] Fix | Delete
ship-to: *id001
[64] Fix | Delete
[65] Fix | Delete
specialDelivery: >
[66] Fix | Delete
Follow the Yellow Brick
[67] Fix | Delete
Road to the Emerald City.
[68] Fix | Delete
Pay no attention to the
[69] Fix | Delete
man behind the curtain.
[70] Fix | Delete
...
[71] Fix | Delete
</textarea></form>
[72] Fix | Delete
<script>
[73] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
[74] Fix | Delete
</script>
[75] Fix | Delete
[76] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-yaml</code>.</p>
[77] Fix | Delete
[78] Fix | Delete
</article>
[79] Fix | Delete
[80] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function