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/tiddlywi...
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: TiddlyWiki 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
<link rel="stylesheet" href="tiddlywiki.css">
[7] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[8] Fix | Delete
<script src="../../addon/edit/matchbrackets.js"></script>
[9] Fix | Delete
<script src="tiddlywiki.js"></script>
[10] Fix | Delete
<style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
[11] Fix | Delete
<div id=nav>
[12] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[13] Fix | Delete
[14] Fix | Delete
<ul>
[15] Fix | Delete
<li><a href="../../index.html">Home</a>
[16] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[17] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[18] Fix | Delete
</ul>
[19] Fix | Delete
<ul>
[20] Fix | Delete
<li><a href="../index.html">Language modes</a>
[21] Fix | Delete
<li><a class=active href="#">TiddlyWiki</a>
[22] Fix | Delete
</ul>
[23] Fix | Delete
</div>
[24] Fix | Delete
[25] Fix | Delete
<article>
[26] Fix | Delete
<h2>TiddlyWiki mode</h2>
[27] Fix | Delete
[28] Fix | Delete
[29] Fix | Delete
<div><textarea id="code" name="code">
[30] Fix | Delete
!TiddlyWiki Formatting
[31] Fix | Delete
* Rendered versions can be found at: http://www.tiddlywiki.com/#Reference
[32] Fix | Delete
[33] Fix | Delete
|!Option | !Syntax |
[34] Fix | Delete
|bold font | ''bold'' |
[35] Fix | Delete
|italic type | //italic// |
[36] Fix | Delete
|underlined text | __underlined__ |
[37] Fix | Delete
|strikethrough text | --strikethrough-- |
[38] Fix | Delete
|superscript text | super^^script^^ |
[39] Fix | Delete
|subscript text | sub~~script~~ |
[40] Fix | Delete
|highlighted text | @@highlighted@@ |
[41] Fix | Delete
|preformatted text | {{{preformatted}}} |
[42] Fix | Delete
[43] Fix | Delete
!Block Elements
[44] Fix | Delete
<<<
[45] Fix | Delete
!Heading 1
[46] Fix | Delete
[47] Fix | Delete
!!Heading 2
[48] Fix | Delete
[49] Fix | Delete
!!!Heading 3
[50] Fix | Delete
[51] Fix | Delete
!!!!Heading 4
[52] Fix | Delete
[53] Fix | Delete
!!!!!Heading 5
[54] Fix | Delete
<<<
[55] Fix | Delete
[56] Fix | Delete
!!Lists
[57] Fix | Delete
<<<
[58] Fix | Delete
* unordered list, level 1
[59] Fix | Delete
** unordered list, level 2
[60] Fix | Delete
*** unordered list, level 3
[61] Fix | Delete
[62] Fix | Delete
# ordered list, level 1
[63] Fix | Delete
## ordered list, level 2
[64] Fix | Delete
### unordered list, level 3
[65] Fix | Delete
[66] Fix | Delete
; definition list, term
[67] Fix | Delete
: definition list, description
[68] Fix | Delete
<<<
[69] Fix | Delete
[70] Fix | Delete
!!Blockquotes
[71] Fix | Delete
<<<
[72] Fix | Delete
> blockquote, level 1
[73] Fix | Delete
>> blockquote, level 2
[74] Fix | Delete
>>> blockquote, level 3
[75] Fix | Delete
[76] Fix | Delete
> blockquote
[77] Fix | Delete
<<<
[78] Fix | Delete
[79] Fix | Delete
!!Preformatted Text
[80] Fix | Delete
<<<
[81] Fix | Delete
{{{
[82] Fix | Delete
preformatted (e.g. code)
[83] Fix | Delete
}}}
[84] Fix | Delete
<<<
[85] Fix | Delete
[86] Fix | Delete
!!Code Sections
[87] Fix | Delete
<<<
[88] Fix | Delete
{{{
[89] Fix | Delete
Text style code
[90] Fix | Delete
}}}
[91] Fix | Delete
[92] Fix | Delete
//{{{
[93] Fix | Delete
JS styled code. TiddlyWiki mixed mode should support highlighter switching in the future.
[94] Fix | Delete
//}}}
[95] Fix | Delete
[96] Fix | Delete
<!--{{{-->
[97] Fix | Delete
XML styled code. TiddlyWiki mixed mode should support highlighter switching in the future.
[98] Fix | Delete
<!--}}}-->
[99] Fix | Delete
<<<
[100] Fix | Delete
[101] Fix | Delete
!!Tables
[102] Fix | Delete
<<<
[103] Fix | Delete
|CssClass|k
[104] Fix | Delete
|!heading column 1|!heading column 2|
[105] Fix | Delete
|row 1, column 1|row 1, column 2|
[106] Fix | Delete
|row 2, column 1|row 2, column 2|
[107] Fix | Delete
|>|COLSPAN|
[108] Fix | Delete
|ROWSPAN| ... |
[109] Fix | Delete
|~| ... |
[110] Fix | Delete
|CssProperty:value;...| ... |
[111] Fix | Delete
|caption|c
[112] Fix | Delete
[113] Fix | Delete
''Annotation:''
[114] Fix | Delete
* The {{{>}}} marker creates a "colspan", causing the current cell to merge with the one to the right.
[115] Fix | Delete
* The {{{~}}} marker creates a "rowspan", causing the current cell to merge with the one above.
[116] Fix | Delete
<<<
[117] Fix | Delete
!!Images /% TODO %/
[118] Fix | Delete
cf. [[TiddlyWiki.com|http://www.tiddlywiki.com/#EmbeddedImages]]
[119] Fix | Delete
[120] Fix | Delete
!Hyperlinks
[121] Fix | Delete
* [[WikiWords|WikiWord]] are automatically transformed to hyperlinks to the respective tiddler
[122] Fix | Delete
** the automatic transformation can be suppressed by preceding the respective WikiWord with a tilde ({{{~}}}): {{{~WikiWord}}}
[123] Fix | Delete
* [[PrettyLinks]] are enclosed in square brackets and contain the desired tiddler name: {{{[[tiddler name]]}}}
[124] Fix | Delete
** optionally, a custom title or description can be added, separated by a pipe character ({{{|}}}): {{{[[title|target]]}}}<br>'''N.B.:''' In this case, the target can also be any website (i.e. URL).
[125] Fix | Delete
[126] Fix | Delete
!Custom Styling
[127] Fix | Delete
* {{{@@CssProperty:value;CssProperty:value;...@@}}}<br>''N.B.:'' CSS color definitions should use lowercase letters to prevent the inadvertent creation of WikiWords.
[128] Fix | Delete
* <html><code>{{customCssClass{...}}}</code></html>
[129] Fix | Delete
* raw HTML can be inserted by enclosing the respective code in HTML tags: {{{<html> ... </html>}}}
[130] Fix | Delete
[131] Fix | Delete
!Special Markers
[132] Fix | Delete
* {{{<br>}}} forces a manual line break
[133] Fix | Delete
* {{{----}}} creates a horizontal ruler
[134] Fix | Delete
* [[HTML entities|http://www.tiddlywiki.com/#HtmlEntities]]
[135] Fix | Delete
* [[HTML entities local|HtmlEntities]]
[136] Fix | Delete
* {{{<<macroName>>}}} calls the respective [[macro|Macros]]
[137] Fix | Delete
* To hide text within a tiddler so that it is not displayed, it can be wrapped in {{{/%}}} and {{{%/}}}.<br/>This can be a useful trick for hiding drafts or annotating complex markup.
[138] Fix | Delete
* To prevent wiki markup from taking effect for a particular section, that section can be enclosed in three double quotes: e.g. {{{"""WikiWord"""}}}.
[139] Fix | Delete
</textarea></div>
[140] Fix | Delete
[141] Fix | Delete
<script>
[142] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[143] Fix | Delete
mode: 'tiddlywiki',
[144] Fix | Delete
lineNumbers: true,
[145] Fix | Delete
matchBrackets: true
[146] Fix | Delete
});
[147] Fix | Delete
</script>
[148] Fix | Delete
[149] Fix | Delete
<p>TiddlyWiki mode supports a single configuration.</p>
[150] Fix | Delete
[151] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-tiddlywiki</code>.</p>
[152] Fix | Delete
</article>
[153] Fix | Delete
[154] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function