6 {
8
9
10
11
12
13
14$this->nocase = "0";
15$this->notrim = "0";
16$this->perl = "0";
17
18
19
20$this->colours = array("blue", "purple", "gray");
21$this->quotecolour = "blue";
22$this->blockcommentcolour = "green";
23$this->linecommentcolour = "green";
24
25
26
27$this->indent = array();
28$this->unindent = array();
29
30
31
32$this->stringchars = array();
33$this->delimiters = array("#", "$", "%", "&", "(", ")", "+", ",", "-", ".", " ", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "[", "\\", "]", "^", "_", "{", "|", "}", "~", "`");
34$this->escchar = "";
35
36
37
38$this->linecommenton = array("");
39$this->blockcommenton = array("");
40$this->blockcommentoff = array("");
41
42
43
44$this->keywords = array(
45 "\\ansi" => "1",
46 "\\author" => "1",
47 "\\b" => "1",
48 "\\company" => "1",
49 "\\deff" => "1",
50 "\\f" => "1",
51 "\\fmodern" => "1",
52 "\\fnil" => "1",
53 "\\fonttbl" => "1",
54 "\\froman" => "1",
55 "\\fswiss" => "1",
56 "\\ftech" => "1",
57 "\\i" => "1",
58 "\\info" => "1",
59 "\\operator" => "1",
60 "\\par" => "1",
61 "\\pard" => "1",
62 "\\qc" => "1",
63 "\\qj" => "1",
64 "\\ql" => "1",
65 "\\qr" => "1",
66 "\\rtf" => "1",
67 "\\title" => "1",
68 "\\ul" => "1",
69 "\\*" => "2",
70 "\\fs24" => "3",
71 "\\margl" => "3",
72 "\\margr" => "3",
73 "\\sa" => "3",
74 "\\sb" => "3");
75
76
77
78
79
80
81
82
83$this->linkscripts = array(
84 "1" => "donothing",
85 "2" => "donothing",
86 "3" => "donothing");
87}