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/pug
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: Pug Templating 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="../javascript/javascript.js"></script>
[8] Fix | Delete
<script src="../css/css.js"></script>
[9] Fix | Delete
<script src="../xml/xml.js"></script>
[10] Fix | Delete
<script src="../htmlmixed/htmlmixed.js"></script>
[11] Fix | Delete
<script src="pug.js"></script>
[12] Fix | Delete
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</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="#">Pug Templating Mode</a>
[24] Fix | Delete
</ul>
[25] Fix | Delete
</div>
[26] Fix | Delete
[27] Fix | Delete
<article>
[28] Fix | Delete
<h2>Pug Templating Mode</h2>
[29] Fix | Delete
<form><textarea id="code" name="code">
[30] Fix | Delete
doctype html
[31] Fix | Delete
html
[32] Fix | Delete
head
[33] Fix | Delete
title= "Pug Templating CodeMirror Mode Example"
[34] Fix | Delete
link(rel='stylesheet', href='/css/bootstrap.min.css')
[35] Fix | Delete
link(rel='stylesheet', href='/css/index.css')
[36] Fix | Delete
script(type='text/javascript', src='/js/jquery-1.9.1.min.js')
[37] Fix | Delete
script(type='text/javascript', src='/js/bootstrap.min.js')
[38] Fix | Delete
body
[39] Fix | Delete
div.header
[40] Fix | Delete
h1 Welcome to this Example
[41] Fix | Delete
div.spots
[42] Fix | Delete
if locals.spots
[43] Fix | Delete
each spot in spots
[44] Fix | Delete
div.spot.well
[45] Fix | Delete
div
[46] Fix | Delete
if spot.logo
[47] Fix | Delete
img.img-rounded.logo(src=spot.logo)
[48] Fix | Delete
else
[49] Fix | Delete
img.img-rounded.logo(src="img/placeholder.png")
[50] Fix | Delete
h3
[51] Fix | Delete
a(href=spot.hash) ##{spot.hash}
[52] Fix | Delete
if spot.title
[53] Fix | Delete
span.title #{spot.title}
[54] Fix | Delete
if spot.desc
[55] Fix | Delete
div #{spot.desc}
[56] Fix | Delete
else
[57] Fix | Delete
h3 There are no spots currently available.
[58] Fix | Delete
</textarea></form>
[59] Fix | Delete
<script>
[60] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[61] Fix | Delete
mode: {name: "pug", alignCDATA: true},
[62] Fix | Delete
lineNumbers: true
[63] Fix | Delete
});
[64] Fix | Delete
</script>
[65] Fix | Delete
<h3>The Pug Templating Mode</h3>
[66] Fix | Delete
<p> Created by Forbes Lindesay. Managed as part of a Brackets extension at <a href="https://github.com/ForbesLindesay/jade-brackets">https://github.com/ForbesLindesay/jade-brackets</a>.</p>
[67] Fix | Delete
<p><strong>MIME type defined:</strong> <code>text/x-pug</code>, <code>text/x-jade</code>.</p>
[68] Fix | Delete
</article>
[69] Fix | Delete
[70] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function