-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (92 loc) · 4.27 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,
shrink-to-fit=no">
<title>Learning F#</title>
<!-- Uncomment this stylesheet when there is no internet -->
<!-- <link rel="stylesheet" href="docute.css"> -->
<link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css">
<link rel="stylesheet" href="styles.css">
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<script type="module">
import latexjs from "https://cdn.jsdelivr.net/npm/latex.js/dist/latex.component.esm.js"
customElements.define('latex-js', latexjs)
</script>
</head>
<body>
<div id="root"></div>
<!-- Uncomment this stylesheet when there is no internet -->
<!-- <script src="docute.js"></script> -->
<script src="https://unpkg.com/docute@4/dist/docute.js"></script>
<script>
var docs = new Docute({
layout: "wide",
target: "#root",
highlight: ["fsharp", "bash"],
cssVariables: {
accentColor: "#b845fc",
sidebarWidth: "300px",
sidebarLinkActiveColor: "#b845fc",
sidebarLinkArrowColor: "#b845fc"
},
nav: [
{ title: "Contribute", link: "/contribute" },
{ title: "GitHub", link: "https://github.com/LukeBurgessYeo/fsharp-tutorial" }
],
sidebar: [
{
title: "What Is This Guide?",
link: "/",
toc: false
},
{
title: "Introduction",
links: [
{ title: "Introducing Programming", link: "/introduction/introduction", toc: false },
{ title: "Setting Up", link: "/introduction/setting-up", toc: false }
]
},
{
title: "Values And Functions",
links: [
{ title: "The Basics", link: "/vals-and-funcs/the-basics", toc: false },
{ title: "Introducing Functions", link: "/vals-and-funcs/introducing-functions", toc: false },
{ title: "More Functions", link: "/vals-and-funcs/more-functions", toc: false },
{ title: "Chaining Functions", link: "/vals-and-funcs/chaining-functions", toc: false },
{ title: "Conditional Logic", link: "/vals-and-funcs/conditional-logic", toc: false },
{ title: "Anonymous Functions", link: "/vals-and-funcs/anonymous-functions", toc: false }
]
},
{
title: "More Types",
links: [
{ title: "Introducting Lists", link: "/more-types/introducing-lists", toc: false },
{ title: "More Lists", link: "/more-types/more-lists", toc: false },
{ title: "The List Module", link: "/more-types/the-list-module", toc: false },
{ title: "Tuples", link: "/more-types/tuples", toc: false },
{ title: "Discriminated Unions", link: "/more-types/discriminated-unions", toc: false },
{ title: "Records", link: "/more-types/records", toc: false },
{ title: "Sets and Maps", link: "/more-types/sets-and-maps", toc: false }
]
},
{
title: "Additional Topics",
links: [
{ title: "String Manipulation", link: "/additional-topics/strings", toc: false },
{ title: "Exception Handling", link: "/additional-topics/exception-handling", toc: false },
{ title: "Recursion", link: "/additional-topics/recursion", toc: false },
{ title: "Further Reading", link: "/additional-topics/further-reading", toc: false }
]
},
{
title: "Exercises",
link: "/exercises",
toc: false
}
]
});
</script>
</body>
</html>