-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
markdown_to_presentation.py
451 lines (363 loc) · 12.9 KB
/
markdown_to_presentation.py
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
from __future__ import annotations
import argparse
import contextlib
import html
import importlib.metadata
import json
import os.path
import shutil
import subprocess
import sys
import tempfile
from collections.abc import Generator
from collections.abc import Sequence
from typing import Callable
from markdown_code_blocks import CodeRenderer
from markdown_code_blocks import highlight
MTPDIR = '.mtp'
MTPVERSION = os.path.join(MTPDIR, 'version')
MAKEFILE = f'''\
IMG = $(wildcard assets/*.png)
IMG_BUILD = $(patsubst assets/%,build/%,$(IMG))
all: index.htm build/presentation.css build/presentation.js $(IMG_BUILD)
build:
\tmkdir $@
build/%.png: assets/%.png build
\tcp $< $@
.mtp/package.json: {MTPVERSION}
\t{sys.executable} -m markdown_to_presentation run-backend $@
.mtp/node_modules: {MTPVERSION} .mtp/package.json
\t{sys.executable} -m markdown_to_presentation run-backend $@
.mtp/style.scss: {MTPVERSION}
\t{sys.executable} -m markdown_to_presentation run-backend $@
build/presentation.css: {MTPVERSION} assets/_app.scss assets/_theme.scss .mtp/style.scss .mtp/node_modules | build
\t{sys.executable} -m markdown_to_presentation run-backend $@
build/presentation.js: {MTPVERSION} .mtp/node_modules | build
\t{sys.executable} -m markdown_to_presentation run-backend $@
index.htm: {MTPVERSION} slides.md
\t{sys.executable} -m markdown_to_presentation run-backend $@
''' # noqa: E501
VERSION = importlib.metadata.version('markdown-to-presentation')
@contextlib.contextmanager
def cwd(pth: str) -> Generator[None]:
pwd = os.getcwd()
os.chdir(pth)
try:
yield
finally:
os.chdir(pwd)
def _read_mtp_version() -> str | None:
try:
with open(MTPVERSION) as f:
return f.read()
except OSError:
return None
def _write_mtp_version() -> None:
os.makedirs(MTPDIR, exist_ok=True)
with open(MTPVERSION, 'w') as f:
f.write(VERSION)
def run_build() -> int:
# Acts as a major version which causes a full rebuild
if _read_mtp_version() != VERSION:
_write_mtp_version()
makefile = MAKEFILE.encode()
return subprocess.run(('make', '-f', '-'), input=makefile).returncode
def show_makefile() -> int:
print(MAKEFILE)
return 0
def push(paths: list[str], *, default_branch: str, pages_branch: str) -> int:
if os.environ.get('GITHUB_ACTIONS'):
user = 'Github Actions'
email = '41898282+github-actions[bot]@users.noreply.github.com'
repo = os.environ['GITHUB_REPOSITORY']
commit_msg = 'Deployed to github pages'
if os.environ.get('GITHUB_REF') != f'refs/heads/{default_branch}':
print(f'Abort: not building {default_branch}')
return 0
elif os.environ.get('TRAVIS'):
user = 'Travis CI'
email = '[email protected]'
repo = os.environ['TRAVIS_REPO_SLUG']
build_number = os.environ['TRAVIS_BUILD_NUMBER']
commit_msg = f'Deployed {build_number} to Github Pages'
paths = ['.travis.yml'] + paths
if os.environ.get('TRAVIS_BRANCH') != default_branch:
print(f'Abort: not building {default_branch}')
return 0
if os.environ.get('TRAVIS_PULL_REQUEST') != 'false':
print('Abort: building a pull request')
return 0
else:
print('Abort: not github actions or travis')
return 0
token = os.environ['GH_TOKEN']
remote = f'https://x-access-token:{token}@github.com/{repo}'
with tempfile.TemporaryDirectory() as tmpdir:
with cwd(tmpdir):
print('Cloning...', flush=True)
proc_ret = subprocess.run(
('git', 'clone', remote, '.'),
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
)
if proc_ret.returncode:
print('git clone failed', flush=True)
return proc_ret.returncode
cmd = (
'git', 'rev-parse', '--quiet', '--verify',
f'remotes/origin/{pages_branch}',
)
if not subprocess.call(cmd, stdout=subprocess.DEVNULL):
print(f'Checkout out {pages_branch}...', flush=True)
subprocess.check_call(('git', 'checkout', pages_branch))
else:
print(f'Creating {pages_branch}...', flush=True)
subprocess.check_call((
'git', 'checkout', '--orphan', pages_branch,
))
print('Removing existing files...', flush=True)
all_files_output = subprocess.check_output(('git', 'ls-files'))
all_files = all_files_output.decode().splitlines()
subprocess.check_call(('git', 'rm', '-f', '--quiet', *all_files))
print('Copying new files...', flush=True)
subprocess.check_call(('rsync', '-avrRq', *paths, tmpdir))
with cwd(tmpdir):
print('Committing...', flush=True)
subprocess.check_call(('git', 'add', '.'))
subprocess.check_call(('git', 'config', 'user.name', user))
subprocess.check_call(('git', 'config', 'user.email', email))
if not subprocess.call(('git', 'diff', '--staged', '--quiet')):
print('Nothing to commit!')
return 0
subprocess.check_call(('git', 'commit', '-m', commit_msg))
print('Pushing...', flush=True)
return subprocess.call(
('git', 'push', 'origin', 'HEAD'),
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,
)
def _make_package_json(target: str) -> int:
with open(target, 'w') as f:
f.write(
json.dumps({
'name': 'presentation',
'version': '0.0.0',
'author': 'Anthony Sottile',
'dependencies': {'reveal.js': '2.6.2'},
}),
)
return 0
def _make_node_modules(target: str) -> int:
with cwd(MTPDIR):
subprocess.check_call(('npm', 'install'))
subprocess.check_call(('npm', 'prune'))
os.utime(target)
return 0
def _make_presentation_css(target: str) -> int:
return subprocess.call((
sys.executable, '-m', 'pysassc',
'-t', 'compressed',
'.mtp/style.scss', target,
))
def _make_presentation_js(target: str) -> int:
# For now, the only js is reveal
shutil.copy('.mtp/node_modules/reveal.js/js/reveal.min.js', target)
return 0
STYLE_SCSS = '''\
// vs.css: https://github.com/richleland/pygments-css
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #008000 } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #0000ff } /* Keyword */
.highlight .cm { color: #008000 } /* Comment.Multiline */
.highlight .cp { color: #0000ff } /* Comment.Preproc */
.highlight .c1 { color: #008000 } /* Comment.Single */
.highlight .cs { color: #008000 } /* Comment.Special */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gh { font-weight: bold } /* Generic.Heading */
.highlight .gp { font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { font-weight: bold } /* Generic.Subheading */
.highlight .kc { color: #0000ff } /* Keyword.Constant */
.highlight .kd { color: #0000ff } /* Keyword.Declaration */
.highlight .kn { color: #0000ff } /* Keyword.Namespace */
.highlight .kp { color: #0000ff } /* Keyword.Pseudo */
.highlight .kr { color: #0000ff } /* Keyword.Reserved */
.highlight .kt { color: #2b91af } /* Keyword.Type */
.highlight .s { color: #a31515 } /* Literal.String */
.highlight .nc { color: #2b91af } /* Name.Class */
.highlight .ow { color: #0000ff } /* Operator.Word */
.highlight .sb { color: #a31515 } /* Literal.String.Backtick */
.highlight .sc { color: #a31515 } /* Literal.String.Char */
.highlight .sd { color: #a31515 } /* Literal.String.Doc */
.highlight .s2 { color: #a31515 } /* Literal.String.Double */
.highlight .se { color: #a31515 } /* Literal.String.Escape */
.highlight .sh { color: #a31515 } /* Literal.String.Heredoc */
.highlight .si { color: #a31515 } /* Literal.String.Interpol */
.highlight .sx { color: #a31515 } /* Literal.String.Other */
.highlight .sr { color: #a31515 } /* Literal.String.Regex */
.highlight .s1 { color: #a31515 } /* Literal.String.Single */
.highlight .ss { color: #a31515 } /* Literal.String.Symbol */
// git diff highlights
.highlight .gi { color: #070; }
.highlight .gd { color: #911; }
// reveal.js
@import 'node_modules/reveal.js/css/reveal';
@import 'node_modules/reveal.js/css/theme/template/mixins';
@import 'node_modules/reveal.js/css/theme/template/settings';
@import '../assets/theme';
@import 'node_modules/reveal.js/css/theme/template/theme';
.reveal {
pre {
background-color: #f5f5f1;
color: #333;
border: 1px solid #ccccc8;
border-radius: 4px;
padding: 5px;
box-shadow: none;
overflow-x: auto;
code {
background-color: #f5f5f1;
}
}
h1, h2, h3, h4, h5, h6 {
code {
text-transform: none;
}
}
.controls {
left: 10px;
right: auto;
.navigate-up, .navigate-down {
display: none;
}
}
li {
padding-bottom: .5em;
}
section img {
background: none;
border: 0;
box-shadow: none;
}
section ul ol {
padding-left: 1em;
}
table {
border-collapse: collapse;
margin: auto;
td, th {
border-width: 1px;
border-style: solid;
padding: .25em;
}
thead {
font-weight: bold;
}
}
}
// application code
@import '../assets/app';
'''
def _make_style_scss(target: str) -> int:
with open(target, 'w') as f:
f.write(STYLE_SCSS)
return 0
INDEX_TMPL = '''\
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="build/presentation.css">
</head>
<body>
<div class="reveal">
<div class="slides">{slides}</div>
</div>
<script src="build/presentation.js"></script>
<script>
Reveal.initialize({{
transition: 'linear',
keyboard: {{39: 'next', 37: 'prev'}}
}});
</script>
</body>
</html>
'''
SLIDE_DELIM = '\n***\n\n'
class RawHTMLRenderer(CodeRenderer):
def block_code(self, code: str, info: str | None = None) -> str:
if info == 'rawhtml':
return code
elif info == 'comment':
return f'<!--\n{html.escape(code)}\n-->'
else:
return super().block_code(code, info)
def _to_slide(md: str) -> str:
highlighted = highlight(md, Renderer=RawHTMLRenderer)
return f'<section>{highlighted}</section>'
def _make_index_htm(target: str) -> int:
with open('slides.md') as f:
contents = f.read()
html = INDEX_TMPL.format(
slides=''.join(
_to_slide(slide) for slide in contents.split(SLIDE_DELIM)
),
)
with open(target, 'w') as f:
f.write(html)
return 0
BACKENDS: dict[str, Callable[[str], int]] = {
'.mtp/package.json': _make_package_json,
'.mtp/node_modules': _make_node_modules,
'.mtp/style.scss': _make_style_scss,
'build/presentation.css': _make_presentation_css,
'build/presentation.js': _make_presentation_js,
'index.htm': _make_index_htm,
}
def run_backend(target: str) -> int:
def _make_old() -> None:
print(f'make old {target}')
if os.path.exists(target):
os.utime(target, (0, 0))
def _make_new() -> None:
print(f'make new {target}')
if os.path.exists(target):
os.utime(target)
try:
ret = BACKENDS[target](target)
except Exception:
_make_old()
raise
else:
if ret:
_make_old()
else:
_make_new()
return ret
def main(argv: Sequence[str] | None = None) -> int:
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(dest='command')
subparsers.required = True
subparsers.add_parser('run-build')
subparsers.add_parser('show-makefile')
push_parser = subparsers.add_parser('push')
push_parser.add_argument('paths', nargs='+')
push_parser.add_argument('--default-branch', default='main')
push_parser.add_argument('--pages-branch', default='gh-pages')
run_backend_parser = subparsers.add_parser('run-backend')
run_backend_parser.add_argument('target')
args = parser.parse_args(argv)
if args.command == 'run-build':
return run_build()
elif args.command == 'show-makefile':
return show_makefile()
elif args.command == 'push':
return push(
args.paths,
default_branch=args.default_branch, pages_branch=args.pages_branch,
)
elif args.command == 'run-backend':
return run_backend(args.target)
else:
raise NotImplementedError(f'unknown command {args.command}')
if __name__ == '__main__':
raise SystemExit(main())