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-fro...
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: YAML front matter 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="../../addon/mode/overlay.js"></script>
[8] Fix | Delete
<script src="../markdown/markdown.js"></script>
[9] Fix | Delete
<script src="../gfm/gfm.js"></script>
[10] Fix | Delete
<script src="../yaml/yaml.js"></script>
[11] Fix | Delete
<script src="yaml-frontmatter.js"></script>
[12] Fix | Delete
<style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style>
[13] Fix | Delete
<div id=nav>
[14] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[15] Fix | Delete
[16] Fix | Delete
<ul>
[17] Fix | Delete
<li><a href="../../index.html">Home</a>
[18] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[19] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[20] Fix | Delete
</ul>
[21] Fix | Delete
<ul>
[22] Fix | Delete
<li><a href="../index.html">Language modes</a>
[23] Fix | Delete
<li><a class=active href="#">YAML-Frontmatter</a>
[24] Fix | Delete
</ul>
[25] Fix | Delete
</div>
[26] Fix | Delete
[27] Fix | Delete
<article>
[28] Fix | Delete
<h2>YAML front matter mode</h2>
[29] Fix | Delete
<form><textarea id="code" name="code">
[30] Fix | Delete
---
[31] Fix | Delete
receipt: Oz-Ware Purchase Invoice
[32] Fix | Delete
date: 2007-08-06
[33] Fix | Delete
customer:
[34] Fix | Delete
given: Dorothy
[35] Fix | Delete
family: Gale
[36] Fix | Delete
[37] Fix | Delete
items:
[38] Fix | Delete
- part_no: A4786
[39] Fix | Delete
descrip: Water Bucket (Filled)
[40] Fix | Delete
price: 1.47
[41] Fix | Delete
quantity: 4
[42] Fix | Delete
[43] Fix | Delete
- part_no: E1628
[44] Fix | Delete
descrip: High Heeled "Ruby" Slippers
[45] Fix | Delete
size: 8
[46] Fix | Delete
price: 100.27
[47] Fix | Delete
quantity: 1
[48] Fix | Delete
[49] Fix | Delete
bill-to: &id001
[50] Fix | Delete
street: |
[51] Fix | Delete
123 Tornado Alley
[52] Fix | Delete
Suite 16
[53] Fix | Delete
city: East Centerville
[54] Fix | Delete
state: KS
[55] Fix | Delete
[56] Fix | Delete
ship-to: *id001
[57] Fix | Delete
[58] Fix | Delete
specialDelivery: >
[59] Fix | Delete
Follow the Yellow Brick
[60] Fix | Delete
Road to the Emerald City.
[61] Fix | Delete
Pay no attention to the
[62] Fix | Delete
man behind the curtain.
[63] Fix | Delete
---
[64] Fix | Delete
[65] Fix | Delete
GitHub Flavored Markdown
[66] Fix | Delete
========================
[67] Fix | Delete
[68] Fix | Delete
Everything from markdown plus GFM features:
[69] Fix | Delete
[70] Fix | Delete
## URL autolinking
[71] Fix | Delete
[72] Fix | Delete
Underscores_are_allowed_between_words.
[73] Fix | Delete
[74] Fix | Delete
## Strikethrough text
[75] Fix | Delete
[76] Fix | Delete
GFM adds syntax to strikethrough text, which is missing from standard Markdown.
[77] Fix | Delete
[78] Fix | Delete
~~Mistaken text.~~
[79] Fix | Delete
~~**works with other formatting**~~
[80] Fix | Delete
[81] Fix | Delete
~~spans across
[82] Fix | Delete
lines~~
[83] Fix | Delete
[84] Fix | Delete
## Fenced code blocks (and syntax highlighting)
[85] Fix | Delete
[86] Fix | Delete
```javascript
[87] Fix | Delete
for (var i = 0; i &lt; items.length; i++) {
[88] Fix | Delete
console.log(items[i], i); // log them
[89] Fix | Delete
}
[90] Fix | Delete
```
[91] Fix | Delete
[92] Fix | Delete
## Task Lists
[93] Fix | Delete
[94] Fix | Delete
- [ ] Incomplete task list item
[95] Fix | Delete
- [x] **Completed** task list item
[96] Fix | Delete
[97] Fix | Delete
## A bit of GitHub spice
[98] Fix | Delete
[99] Fix | Delete
* SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
[100] Fix | Delete
* User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
[101] Fix | Delete
* User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2
[102] Fix | Delete
* \#Num: #1
[103] Fix | Delete
* User/#Num: mojombo#1
[104] Fix | Delete
* User/Project#Num: mojombo/god#1
[105] Fix | Delete
[106] Fix | Delete
See http://github.github.com/github-flavored-markdown/.
[107] Fix | Delete
</textarea></form>
[108] Fix | Delete
[109] Fix | Delete
<p>Defines a mode that parses
[110] Fix | Delete
a <a href="http://jekyllrb.com/docs/frontmatter/">YAML frontmatter</a>
[111] Fix | Delete
at the start of a file, switching to a base mode at the end of that.
[112] Fix | Delete
Takes a mode configuration option <code>base</code> to configure the
[113] Fix | Delete
base mode, which defaults to <code>"gfm"</code>.</p>
[114] Fix | Delete
[115] Fix | Delete
<script>
[116] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "yaml-frontmatter"});
[117] Fix | Delete
</script>
[118] Fix | Delete
[119] Fix | Delete
</article>
[120] Fix | Delete
[121] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function