-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 1.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<title>wikiLingo CodeMirror Mode</title>
<link rel="stylesheet" type="text/css" href="bower_components/CodeMirror/lib/codemirror.css">
<link rel="stylesheet" type="text/css" href="wikiLingo.css">
</head>
<body>
<textarea id="source">
__Bold__
::Center::
-+Code+-
~~Color:Text~~
/*Comment*/
@FLP(clipboard-data-here)
FutureLink-Protocol
@)
!Header1
!!Header2
!!!Header3
!!!!Header4
!!!!!Header5
!!!!!!Header6
''Italic''
-~Not Parsed~-
*List (Unordered)
#List (Ordered)
-/Pre-Formatted Text/-
--Strike--
||Table|Table|Table
Table|Table|Table||
-=Title Bar=-
===Underscore===
%Variable%
{PLUGIN(parameter1="value" parameter2='value' parameter3=`value` parameter4=value)} content {PLUGIN}
{plugin parameter1="value" parameter2='value' parameter3=`value` parameter4=value}
<tag />
!Not a header
*Not a list
#Not a list
</textarea>
</body>
<script src="bower_components/CodeMirror/lib/codemirror.js"></script>
<script src="wikiLingo.js"></script>
<script>
CodeMirror.fromTextArea(document.getElementById('source'), {
mode: "wikiLingo"
});
</script>
</html>