-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 908 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>(Open-Source-)OCR-Workflows</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="layout.css"/>
<link href="https://fonts.googleapis.com/css?family=Bitter|Open+Sans" rel="stylesheet">
</head>
<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS_HTML&delayStartupUntil=configured" type="text/javascript"></script>
<script type="text/javascript">
var slideshow = remark.create({
sourceUrl: 'content.md',
countIncrementalSlides: false
});
// Setup MathJax
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
MathJax.Hub.Configured();
</script>
</body>
</html>