summary refs log tree commit diff stats
path: root/lib/packages/docutils/highlite.nim
Commit message (Collapse)AuthorAgeFilesLines
* styleCheck: make the compiler and large parts of the stdlib compatible with ↵Araq2019-07-101-2/+2
| | | | --styleCheck:error
* Documentation highlite (#11596)Juan Carlos2019-06-261-0/+27
| | | | | | * Add Documentation with examples for highlite * Add Documentation with examples for highlite
* document proper imports, fixes #8164 (#10698)Miran2019-02-191-0/+2
|
* make highlite.nim compile againAraq2018-08-231-1/+1
|
* Multi byte characters should not be treated as part of an operatorOscar Nihlgård2018-06-031-1/+1
|
* Use new binarySearch everywhere (#7876)Dmitry Atamanov2018-05-251-24/+3
|
* the documentation generator now supports ':test:' for the testing of test ↵Araq2017-11-281-6/+3
| | | | snippets
* language change: 'generic' and 'atomic' are not keywords anymoreAndreas Rumpf2017-11-211-6/+5
|
* 'with' and 'without' are not keywords anymoreAraq2017-09-301-2/+2
|
* fixes #3078Andreas Rumpf2016-10-201-6/+9
|
* Fixes to YAML highlighting support, added testsFelix Krause2016-04-011-7/+18
|
* Added YAML support to doctools/highliteFelix Krause2016-03-291-2/+296
|
* use 'using' instead of 'sig' keyword; cleans up new features a bitAndreas Rumpf2016-02-291-1/+1
|
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-1/+1
|
* implements final version of multiline commentsAndreas Rumpf2016-01-171-11/+30
|
* implements multi-line-comments; pounds are stripped from the doc commentsAndreas Rumpf2016-01-161-1/+16
|
* lib/packages/docutils - Dropped 'T' from typespdw2015-06-041-29/+32
|
* breaking change: 'concept' is now a keyword and used instead of 'generic'Araq2015-03-231-222/+224
|
* destuctors are experimental; 'func' is now a keywordAraq2014-12-101-1/+2
|
* implements 'defer'Araq2014-12-041-2/+3
|
* support nimrod as an alias for nim for compatibility (nimforum!)Araq2014-09-171-4/+4
|
* renamefestAraq2014-08-231-1/+1
|
* the big renamefest: first stepsAraq2014-08-221-9/+9
|
* 'lambda' is no keyword anymoreAraq2014-08-081-1/+1
|
* new concurrency model: first steps; shared is not a keyword anymoreAraq2014-04-141-2/+4
|
* added an overload for highlight.initGeneralTokenizer that accepts a cstring.Charlie Barto2014-02-261-3/+4
| | | | I use this when calling the highlighter from C#.
* Punctation -> punctuation.EXetoC2014-01-291-4/+4
|
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-2/+2
|
* case consistency: next stepsAraq2013-12-291-1/+1
|
* case consistency part 4Araq2013-12-271-3/+3
|
* bugfix: keywords are sortedAraq2013-12-051-1/+1
|
* Adds highlite to tests suite.Grzegorz Adam Hankiewicz2013-06-181-1/+1
|
* Adds previous slurping as runnable testcase.Grzegorz Adam Hankiewicz2013-06-181-1/+14
|
* Replaces relative file slurping with hardcoded array.Grzegorz Adam Hankiewicz2013-06-181-1/+11
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* Moved packages to lib directory.Dominik Picheta2013-02-251-0/+537
kkartik.com> 2021-04-10 21:20:46 -0700 shell: UI now showing fake keyboard' href='/akkartik/mu/commit/shell/cell.mu?h=hlt&id=770cac9412f95e0b305712239a86ff388467a1e1'>770cac94 ^
a509279a ^


a509279a ^


770cac94 ^
c11ea744 ^
770cac94 ^



97df52bf ^
770cac94 ^


1afc0211 ^












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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206