-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskell-preintro.html
32 lines (32 loc) · 1.14 KB
/
haskell-preintro.html
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
<!DOCTYPE html>
<html>
<head>
<title>Haskell introduction</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
body { font-family: sans-serif; }
.remark-slide-content { padding: 0em 2em 0em 2em; }
.remark-slide-content h1 { font-size: 32pt; font-weight: normal; }
.remark-slide-content h2 { font-size: 24pt; font-weight: normal; }
.remark-slide-content h3 { font-size: 16pt; }
p, ul, li { font-size: 20pt; line-height: 1.5; }
.remark-code, .remark-inline-code { font-size: 16pt; font-family: monospace; }
</style>
</head>
<body>
<script src="https://gnab.github.io/remark/downloads/remark-latest.min.js"></script>
<script>
/* WORKAROUND */
window.onload = function () {
var pres = document.getElementsByTagName('pre');
pres.forEach(function (e) {
e.innerHTML = e.innerHTML.replace(/\\\`/g, '`');
});
};
var slideshow = remark.create({
sourceUrl: 'haskell-preintro.md'
, ratio: '16:9'
});
</script>
</body>
</html>