-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (106 loc) · 3.51 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hello, world!</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="jumbotron">
<h1 class="display-3">Kyanite.js Tutorial</h1>
<p class="lead">Created by dhershman1, Kyanite.js is a light weight pure functional library with single type
utility functions and it only depends on itself.</p>
<hr class="my-2">
<p>More info</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="Jumbo action link" role="button">Jumbo action name</a>
</p>
</div>
<div class="container">
<h2>
Kyanite.add()
</h2>
<div>
<h4>
What does it do
</h4>
<p>
Kyanite.add() is a simple, curried adder function.It takes 2 arguments, both of which need to be numbers.
</p>
</div>
<div>
<h4>
Syntax
</h4>
<blockquote>
k.add(a, b) => a + b
</blockquote>
</div>
<p>
Documentation at
<a href="https://kyanite.dusty.codes/functions.html#add">https://kyanite.dusty.codes</a>
</p>
<!-- <div class="param-return">
<h4>
Parameters & Return
</h4>
<ul>
<li>
<ul>
<h5>
a: Number
</h5>
<li>
The first number to add
</li>
</ul>
</li>
<li>
<ul>
<h5>
b: Number
</h5>
<li>
The second number to add
</li>
</ul>
</li>
<li>
<ul>
<h5>
Return => Number
</h5>
<li>
The sum of the two parameters.
</li>
</ul>
</li>
</ul>
</div> -->
<div>
<h4>Examples</h4>
<p>To edit the code and see how it changes, click "Edit on Codepen" in the upper-right hand corner.</p>
<p data-height="409" data-theme-id="dark" data-slug-hash="RqOpwR" data-default-tab="js,result" data-user="hamidyou"
data-pen-title="Kyanite Tutorial Demos" class="codepen">
See the Pen
<a href="https://codepen.io/hamidyou/pen/RqOpwR/">
Kyanite Tutorial Demos</a> by hamidyou (<a href="https://codepen.io/hamidyou">@hamidyou</a>) on <a href="https://codepen.io">CodePen</a>.
</p>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script async src="https://static.codepen.io/assets/embed/ei.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>