summary refs log tree commit diff stats
path: root/compiler/nimpaths.nim
Commit message (Collapse)AuthorAgeFilesLines
* prepare for the enforcement of `std` prefix (#22873)ringabout2023-10-291-1/+1
| | | follow up https://github.com/nim-lang/Nim/pull/22851
* Implement Markdown definition lists (+ migration) (#20333)Andrey Makarov2022-09-111-1/+1
| | | | | | | | | | | | | | | Implements definition lists Markdown extension adopted in a few implementations including: * [Pandoc]( https://pandoc.org/MANUAL.html#definition-lists) * [kramdown]( https://kramdown.gettalong.org/quickref.html#definition-lists) * [PHP extra Markdown]( https://michelf.ca/projects/php-markdown/extra/#def-list) Also affected files have been migrated. RST definition lists are turned off for Markdown: this solves the problem of broken formatting mentioned in https://github.com/nim-lang/Nim/pull/20292.
* Move common Latex code into class nimdoc.cls (#19734)Andrey Makarov2022-04-211-0/+2
|
* move assertions out of system (#19599)flywind2022-03-231-0/+4
|
* CIs: attempt to use csources_v1 (#16282)Andreas Rumpf2021-04-211-1/+1
| | | | | | | | * CIs: attempt to use csources_v1 * also updated the BSDs * also updated azure pipelines * std modules should not itself use the 'std/' import dir... * compiler has to be careful with std/ for v1 booting
* remove tests/deps/ (#17132)Timothee Cour2021-02-231-1/+2
| | | | | | | | | * remove tests/deps/ * fix tests * fix tests/manyloc/keineschweine/lib/zlib_helpers.nim * fixup
* use release version (#15400)flywind2020-09-241-2/+2
|
* docgen: mangling using _. instead of @@ to avoid issue (#14454)Timothee Cour2020-05-261-0/+3
|
* fix #6583, fix #14376, index+search now generated for all projects, many bug ↵Timothee Cour2020-05-251-0/+44
fixes with nim doc (#14324) * refs #6583 fix nim doc output * changelog * change default for outDir when unspecified * cleanups * --project implies --index
b57aa32aee5deab'>cd2c6128d ^
9025e89fb ^
cb76f266f ^




cd2c6128d ^



















cd2c6128d ^
3813af63f ^
cd2c6128d ^

3939e674d ^
cd2c6128d ^
f8af8df91 ^
cd2c6128d ^







3813af63f ^







cd2c6128d ^









6018c7a0c ^
cd2c6128d ^




342608db0 ^
cd2c6128d ^

440db2d00 ^

cd2c6128d ^
0032912d1 ^
3939e674d ^
cd2c6128d ^
f7f87a770 ^
5be4e7b9f ^















4e183dc10 ^










f7f87a770 ^












cd2c6128d ^


3a4ec7f10 ^




3939e674d ^


cd2c6128d ^














e99f35ff2 ^


3b1c5183d ^

1af0ac9d2 ^
88f95a2f7 ^
3b1c5183d ^
febb551f7 ^
88f95a2f7 ^
3b1c5183d ^
1af0ac9d2 ^
88f95a2f7 ^
3b1c5183d ^

88f95a2f7 ^
3b1c5183d ^
e99f35ff2 ^
a13e2bd5e ^
e99f35ff2 ^
cd2c6128d ^

cd2c6128d ^

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