-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhastyscribe.nim
477 lines (433 loc) · 15.1 KB
/
hastyscribe.nim
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
import
os,
parseopt2,
strutils,
sequtils,
times,
pegs,
base64,
markdown,
tables,
httpclient
import
config,
consts,
utils
type
HastyOptions* = object
toc*: bool
input*: string
output*: string
css*: string
js*: string
watermark*: string
fragment*: bool
HastyFields* = Table[string, proc():string]
HastySnippets* = Table[string, string]
HastyMacros* = Table[string, string]
HastyScribe* = object
options: HastyOptions
fields: HastyFields
snippets: HastySnippets
macros: HastyMacros
document: string
proc initFields(fields: HastyFields): HastyFields =
result = initTable[string, proc():string]()
for key, value in fields.pairs:
result[key] = value
var now = getTime().getLocalTime()
result["timestamp"] = proc():string =
return $now.toTime.toSeconds().int
result["date"] = proc():string =
return now.format("yyyy-MM-dd")
result["full-date"] = proc():string =
return now.format("dddd, MMMM d, yyyy")
result["long-date"] = proc():string =
return now.format("MMMM d, yyyy")
result["medium-date"] = proc():string =
return now.format("MMM d, yyyy")
result["short-date"] = proc():string =
return now.format("M/d/yy")
result["short-time-24"] = proc():string =
return now.format("HH:mm")
result["short-time"] = proc():string =
return now.format("HH:mm tt")
result["time-24"] = proc():string =
return now.format("HH:mm:ss")
result["time"] = proc():string =
return now.format("HH:mm:ss tt")
result["day"] = proc():string =
return now.format("dd")
result["month"] = proc():string =
return now.format("MM")
result["year"] = proc():string =
return now.format("yyyy")
result["short-day"] = proc():string =
return now.format("d")
result["short-month"] = proc():string =
return now.format("M")
result["short-year"] = proc():string =
return now.format("yy")
result["weekday"] = proc():string =
return now.format("dddd")
result["weekday-abbr"] = proc():string =
return now.format("dd")
result["month-name"] = proc():string =
return now.format("MMMM")
result["month-name-abbr"] = proc():string =
return now.format("MMM")
result["timezone-offset"] = proc():string =
return now.format("zzz")
proc newHastyScribe*(options: HastyOptions, fields: HastyFields): HastyScribe =
return HastyScribe(options: options, fields: initFields(fields), snippets: initTable[string, string](), macros: initTable[string, string](), document: "")
# Utility Procedures
proc embed_images(hs: var HastyScribe, dir: string) =
let peg_img = peg"""
image <- '<img' \s+ 'src=' ["] {file} ["]
file <- [^"]+
"""
var current_dir:string
if dir.len == 0:
current_dir = ""
else:
current_dir = dir & "/"
type
TImgTagStart = array[0..0, string]
var doc = hs.document
for img in findAll(hs.document, peg_img):
var matches:TImgTagStart
discard img.match(peg_img, matches)
let imgfile = matches[0]
let imgformat = imgfile.image_format
var imgcontent = ""
if imgfile.startsWith(peg"'data:'"):
continue
elif imgfile.startsWith(peg"http[s]?'://'"):
try:
let client = newHttpClient()
imgcontent = encode_image(client.getContent(imgfile), imgformat)
except:
stderr.writeLine "Warning: Unable to download '" & imgfile & "'"
stderr.writeLine " Reason: " & getCurrentExceptionMsg()
stderr.writeLine " -> Image will be linked instead"
continue
else:
imgcontent = encode_image_file(current_dir & imgfile, imgformat)
let imgrep = img.replace("\"" & img_file & "\"", "\"" & imgcontent & "\"")
doc = doc.replace(img, imgrep)
hs.document = doc
proc add_jump_to_top_links(hs: var HastyScribe) =
hs.document = hs.document.replacef(peg"{'</h' [23456] '>'}", "<a href=\"#document-top\" title=\"Go to top\"></a>$1")
proc embed_fonts(): string=
let fonts = @[
create_font_face(hastyscribe_font, "HastyScribe", "normal", 400),
create_font_face(fontawesome_font, "FontAwesome", "normal", 400),
create_font_face(sourcecodepro_font, "Source Code Pro", "normal", 400),
create_font_face(sourcesanspro_font, "Source Sans Pro", "normal", 400),
create_font_face(sourcesanspro_bold_font, "Source Sans Pro", "normal", 800),
create_font_face(sourcesanspro_it_font, "Source Sans Pro", "italic", 400),
create_font_face(sourcesanspro_boldit_font, "Source Sans Pro", "italic", 800)
]
return style_tag(fonts.join);
proc preprocess(hs: var HastyScribe, document, dir: string, offset = 0): string
proc applyHeadingOffset(contents: string, offset: int): string =
if offset == 0:
return contents
let peg_heading = peg"""heading <- (^ / \n){'#'+}"""
var handleHeading = proc (index: int, count: int, matches: openArray[string]): string =
let heading = matches[0]
result = "\n" & "#".repeat(heading.len + offset)
return contents.replace(peg_heading, handleHeading)
# Transclusion with heading offset:
# {@ some/file.md || 1 @}
proc parse_transclusions(hs: var HastyScribe, document: string, dir = "", offset = 0): string =
result = document.applyHeadingOffset(offset)
let peg_transclusion = peg"""
transclusion <- '{\@' \s* {path} \s* '||' \s* {offset} \s* '\@}'
path <- [^|]+
offset <- [0-5]
"""
var cwd = dir
if cwd != "":
cwd = cwd & "/"
for transclusion in document.findAll(peg_transclusion):
var matches: array[0..1, string]
discard transclusion.match(peg_transclusion, matches)
let path = cwd & matches[0].strip
let value = matches[1].strip
let offset = value.split("||")[0].parseInt() + offset
if path.fileExists():
let fileInfo = path.splitFile()
let contents = path.readFile()
result = result.replace(transclusion, hs.parse_transclusions(contents, fileInfo.dir, offset))
else:
stderr.writeLine "Warning: File '$1' not found" % [path]
result = result.replace(transclusion, "")
# Macro Definition:
# {#test -> This is a $1}
#
# Macro Usage:
# {#test||simple test}
proc parse_macros(hs: var HastyScribe, document: string): string =
let peg_macro_def = peg"""
definition <- '{#' \s* {id} \s* deftype {@} '#}'
deftype <- '->' / '=>'
id <- [a-zA-Z0-9_-]+
"""
let peg_macro_instance = peg"""
instance <- "{#" \s* {id} \s* "||" \s* {@} "#}"
id <- [a-zA-Z0-9_-]+
"""
result = document
for def in document.findAll(peg_macro_def):
var matches: array[0..1, string]
discard def.match(peg_macro_def, matches)
let id = matches[0].strip
let value = matches[1].strip
hs.macros[id] = value
result = result.replace(def, "")
for instance in findAll(result, peg_macro_instance):
var matches: array[0..1, string]
discard instance.match(peg_macro_instance, matches)
let id = matches[0].strip
let value = matches[1].strip
let params = value.split("||")
if hs.macros.hasKey(id):
try:
result = result.replace(instance, hs.macros[id] % params)
except:
stderr.writeLine "Warning: Incorrect number of parameters specified for macro '$1'\n -> Instance: $2" % [id, instance]
else:
stderr.writeLine "Warning: Macro '" & id & "' not defined."
result = result.replace(instance, "")
# Field Usage:
# {{$timestamp}}
proc parse_fields(hs: var HastyScribe, document: string): string =
let peg_field = peg"""
field <- '{{' \s* '$' {id} \s* '}}'
id <- [a-zA-Z0-9_-]+
"""
result = document
for field in document.findAll(peg_field):
var matches:array[0..0, string]
discard field.match(peg_field, matches)
var id = matches[0].strip
if hs.fields.hasKey(id):
result = result.replace(field, hs.fields[id]())
else:
stderr.writeLine "Warning: Field '" & id & "' not defined."
result = result.replace(field, "")
# Snippet Definition:
# {{test -> My test snippet}}
#
# Snippet Usage:
# {{test}}
proc parse_snippets(hs: var HastyScribe, document: string): string =
let peg_snippet_def = peg"""
definition <- '{{' \s* {id} \s* {deftype} {@} '}}'
deftype <- '->' / '=>'
id <- [a-zA-Z0-9_-]+
"""
let peg_snippet = peg"""
snippet <- '{{' \s* {id} \s* '}}'
id <- [a-zA-Z0-9_-]+
"""
type
TSnippetDef = array[0..2, string]
TSnippet = array[0..0, string]
result = document
for def in document.findAll(peg_snippet_def):
var matches:TSnippetDef
discard def.match(peg_snippet_def, matches)
var id = matches[0].strip
var value = matches[2].strip(true, false)
hs.snippets[id] = value
if matches[1] == "=>":
value = ""
result = result.replace(def, value)
for snippet in document.findAll(peg_snippet):
var matches:TSnippet
discard snippet.match(peg_snippet, matches)
var id = matches[0].strip
if hs.snippets.hasKey(id):
result = result.replace(snippet, hs.snippets[id])
else:
stderr.writeLine "Warning: Snippet '" & id & "' not defined."
result = result.replace(snippet, "")
proc preprocess(hs: var HastyScribe, document, dir: string, offset = 0): string =
result = hs.parse_transclusions(document, dir, offset)
result = hs.parse_fields(result)
result = hs.parse_snippets(result)
result = hs.parse_macros(result)
proc compileFragment*(hs: var HastyScribe, input, dir: string, toc = false): string {.discardable.} =
hs.options.input = input
hs.document = hs.options.input
# Parse transclusions, fields, snippets, and macros
hs.document = hs.preprocess(hs.document, dir)
# Process markdown
var flags = MKD_EXTRA_FOOTNOTE or MKD_NOHEADER or MKD_DLEXTRA or MKD_FENCEDCODE or MKD_GITHUBTAGS or MKD_HTML5ANCHOR
if toc:
flags = flags or MKD_TOC
hs.document = hs.document.md(flags)
return hs.document
proc compileDocument*(hs: var HastyScribe, input, dir: string): string {.discardable.} =
hs.options.input = input
hs.document = hs.options.input
# Parse transclusions, fields, snippets, and macros
hs.document = hs.preprocess(hs.document, dir)
# Document Variables
var
main_css_tag = stylesheet.style_tag
user_css_tag = ""
user_js_tag = ""
watermark_css_tag = ""
headings = " class=\"headings\""
author_footer = ""
title_tag = ""
header_tag = ""
toc = ""
metadata = TMDMetaData(title:"", author:"", date:"", toc:"", css:"")
# Process markdown
hs.document = hs.document.md(0, metadata)
# Manage metadata
if metadata.author != "":
author_footer = "<span class=\"copy\"></span> " & metadata.author & " –"
if metadata.title != "":
title_tag = "<title>" & metadata.title & "</title>"
header_tag = "<div id=\"header\"><h1>" & metadata.title & "</h1></div>"
else:
title_tag = ""
header_tag = ""
if hs.options.toc and metadata.toc != "":
toc = "<div id=\"toc\">" & metadata.toc & "</div>"
else:
headings = ""
toc = ""
if not hs.options.css.isNil:
user_css_tag = hs.options.css.readFile.style_tag
if not hs.options.js.isNil:
user_js_tag = "<script type=\"text/javascript\">\n" & hs.options.js.readFile & "\n</script>"
if not hs.options.watermark.isNil:
watermark_css_tag = watermark_css(hs.options.watermark)
# Date parsing and validation
var timeinfo: TimeInfo = getLocalTime(getTime())
if parse_date(metadata.date, timeinfo) == false:
discard parse_date(getDateStr(), timeinfo)
hs.document = """<!doctype html>
<html lang="en">
<head>
$title_tag
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="$author">
<meta name="generator" content="HastyScribe">
$fonts_css_tag
$main_css_tag
$user_css_tag
$internal_css_tag
$watermark_css_tag
</head>
<body$headings>
<div id="container">
<a id="document-top"></a>
$header_tag
$toc
<div id="main">
$body
</div>
<div id="footer">
<p>$author_footer $date</p>
<p><span>Powered by</span> <a href="https://h3rald.com/hastyscribe"><span class="hastyscribe"></span></a></p>
</div>
</div>
$js
</body>""" % ["title_tag", title_tag, "header_tag", header_tag, "author", metadata.author, "author_footer", author_footer, "date", timeinfo.format("MMMM d, yyyy"), "toc", toc, "main_css_tag", main_css_tag, "user_css_tag", user_css_tag, "headings", headings, "body", hs.document,
"fonts_css_tag", embed_fonts(), "internal_css_tag", metadata.css, "watermark_css_tag", watermark_css_tag, "js", user_js_tag]
hs.embed_images(dir)
hs.add_jump_to_top_links()
return hs.document
proc compile*(hs: var HastyScribe, input_file: string) =
let inputsplit = input_file.splitFile
var input = input_file.readFile
var output: string
if hs.options.output.isNil:
output = inputsplit.dir/inputsplit.name & ".htm"
else:
output = hs.options.output
if hs.options.fragment:
hs.compileFragment(input, inputsplit.dir)
else:
hs.compileDocument(input, inputsplit.dir)
if output != "-":
output.writeFile(hs.document)
else:
stdout.write(hs.document)
### MAIN
when isMainModule:
let usage = " HastyScribe v" & version & " - Self-contained Markdown Compiler" & """
(c) 2013-2017 Fabio Cevasco
Usage:
hastyscribe <markdown_file_or_glob> [options]
Arguments:
markdown_file_or_glob The markdown (or glob expression) file to compile into HTML.
Options:
--field/<field>=<value> Define a new field called <field> with value <value>.
--notoc Do not generate a Table of Contents.
--user-css=<file> Insert contents of <file> as a CSS stylesheet.
--user-js=<file> Insert contents of <file> as a Javascript script.
--output-file=<file> Write output to <file>.
(Use "--output-file=-" to output to stdout)
--watermark=<file> Use the image in <file> as a watermark.
--fragment If specified, an HTML fragment will be generated, without
embedding images, fonts, or stylesheets. """
var input = ""
var files = newSeq[string](0)
var options = HastyOptions(toc: true, output: nil, css: nil, watermark: nil, fragment: false)
var fields = initTable[string, proc():string]()
# Parse Parameters
for kind, key, val in getopt():
case kind
of cmdArgument:
input = key
of cmdLongOption:
case key
of "notoc":
options.toc = false
of "user-css":
options.css = val
of "user-js":
options.js = val
of "watermark":
options.watermark = val
of "output-file":
options.output = val
of "fragment":
options.fragment = true
else:
if key.startsWith("field/"):
let val = val
fields[key.replace("field/", "")] = proc(): string =
return val
discard
else:
discard
if input == "":
quit(usage, 1)
elif options.css == "":
quit(usage, 4)
elif options.output == "":
quit(usage, 5)
elif options.watermark == "":
quit(usage, 6)
for file in walkFiles(input):
files.add(file)
if files.len == 0:
quit("Error: \"$1\" does not match any file" % [input], 2)
else:
var hs = newHastyScribe(options, fields)
try:
for file in files:
hs.compile(file)
except IOError:
let msg = getCurrentExceptionMsg()
quit("Error: $1" % [msg], 3)