Skip to content

Commit 50a3dff

Browse files
Generate. (Add abstract to landing page.)
1 parent 5e8443a commit 50a3dff

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

index.html

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,20 @@
22
<html>
33
<head>
44
<title>A Scheme API for test suites</title>
5-
<link href="/admin.css" rel="stylesheet">
6-
<link href="/list.css" rel="stylesheet">
7-
<link href="/favicon.png" rel="icon" sizes="192x192" type="image/png">
5+
<link href="../srfi-common/admin.css" rel="stylesheet">
6+
<link href="../srfi-common/list.css" rel="stylesheet">
7+
<link href="../srfi-common/favicon.png" rel="icon" sizes="192x192" type="image/png">
88
<meta charset="utf-8" />
99
<meta name="viewport" content="width=device-width, initial-scale=1" />
10+
<script type="text/x-mathjax-config">
11+
MathJax.Hub.Config({
12+
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
13+
});
14+
</script>
15+
<script crossorigin="anonymous" integrity=
16+
"sha384-Ra6zh6uYMmH5ydwCqqMoykyf1T/+ZcnOQfFPhDrp2kI4OIxadnhsvvA2vv9A7xYv" src=
17+
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
18+
type="text/javascript"></script>
1019
</head>
1120

1221
<body>
@@ -62,4 +71,11 @@ <h1>SRFI 64: A Scheme API for test suites</h1>
6271
value="unsubscribe" >
6372
<input name="list"
6473
type="hidden"
65-
value="[email protected]" ></form></li></ul></body></html>
74+
value="[email protected]"></form></li></ul>
75+
<h2>Abstract</h2> <p>This defines an API for writing <dfn>test
76+
suites</dfn>, to make it easy to portably test Scheme APIs, libraries,
77+
applications, and implementations. A test suite is a collection of
78+
<dfn>test cases</dfn> that execute in the context of a
79+
<dfn>test-runner</dfn>. This specifications also supports writing new
80+
test-runners, to allow customization of reporting and processing the
81+
result of running test suites.</body></html>

0 commit comments

Comments
 (0)