10 {
12
13
14
15
16
17
18 $this->nocase = "1";
19 $this->notrim = "0";
20 $this->perl = "0";
21
22
23
24 $this->colours = array("purple", "blue", "purple", "gray", "brown", "blue");
25 $this->quotecolour = "blue";
26 $this->blockcommentcolour = "green";
27 $this->linecommentcolour = "green";
28
29
30
31 $this->indent = array();
32 $this->unindent = array();
33
34
35
36 $this->stringchars = array();
37 $this->delimiters = array("B", "E", "I", "J", "K", "L", "P", "Q", "R", "U", "V", "W", "(", " ", ")", "=", "-", "+", "*");
38 $this->escchar = "";
39
40
41
42 $this->linecommenton = array(";");
43 $this->blockcommenton = array("(");
44 $this->blockcommentoff = array(")");
45
46
47
48 $this->keywords = array(
49 "**" => "6",
50 "N" => "1",
51 "%" => "2",
52 ":" => "2",
53 "O" => "2",
54 "H" => "2",
55 "F" => "2",
56 "S" => "2",
57 "T" => "2",
58 "G" => "3",
59 "M" => "3",
60 "A" => "4",
61 "C" => "4",
62 "D" => "4",
63 "X" => "5",
64 "Z" => "5",
65 "Y" => "6");
66
67
68
69
70
71
72
73
74 $this->linkscripts = array(
75 "6" => "donothing",
76 "1" => "donothing",
77 "2" => "donothing",
78 "3" => "donothing",
79 "4" => "donothing",
80 "5" => "donothing");
81 }