forked from gebakx/gameAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.02 KB
/
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
27
28
29
30
31
32
33
34
<DOCTYPE html>
<html>
<head>
<title>Linq Cookbook</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../estils.css">
</head>
<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript"></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: "readme.md",
highlightStyle: 'default',
highlightLanguage: 'c#'
});
//remark macros
remark.macros.scale = function (percentage) {
var url = this;
return '<img src="' + url + '" style="width: ' + percentage + '" />';
};
// Setup MathJax
window.MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
inlineMath: [['$','$']],
displayMath: [['$$', '$$']],
}
});
MathJax.Hub.Configured();
</script>
</body>
</html>