Skip to content

Commit f46ad4d

Browse files
Generate.
1 parent 89365ec commit f46ad4d

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

README.org

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
* SRFI 180: JSON
2+
3+
** by Amirouche Boubekki
4+
5+
This repository hosts [[https://srfi.schemers.org/srfi-180/][SRFI 180]]: JSON, a [[https://srfi.schemers.org/][Scheme Request for Implementation]].
6+
7+
This SRFI is in /draft/ status.
8+
9+
The full documentation for this SRFI can be found in the [[https://srfi.schemers.org/srfi-180/srfi-180.html][SRFI Document]].
10+
11+
If you'd like to participate in the discussion of this SRFI, or report issues with it, please [[https://srfi.schemers.org/srfi-180/][join the SRFI-180 mailing list]] and send your message there.
12+
13+
Thank you.
14+
15+
16+
[[mailto:[email protected]][The SRFI Editors]]

index.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>JSON</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">
8+
<meta charset="utf-8" />
9+
<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>
19+
</head>
20+
21+
<body>
22+
<h1>SRFI 180: JSON</h1>
23+
<p class="authors">by Amirouche Boubekki</p>
24+
<p class="status">status: <em>draft</em> (2020/1/18)</p>
25+
26+
<ul class="info">
27+
<li><a href="srfi-180.html">The SRFI Document</a></li>
28+
<li><a href="https://srfi-email.schemers.org/srfi-180/">Discussion Archive</a></li>
29+
<li><a href="https://github.com/scheme-requests-for-implementation/srfi-180">Git repo (on Github)</a></li>
30+
<li>
31+
<a href="mailto:[email protected]">srfi-180@<span class="antispam">nospam</span>srfi.schemers.org (subscribers only)</a></li>
32+
<li>
33+
<span class="firefox-column-workaround">
34+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
35+
<div class="title">Subscribe to srfi-180 mailing list</div>
36+
<input name="email"
37+
placeholder="email address"
38+
tabindex="1"
39+
type="email" >
40+
<input name="name"
41+
placeholder="full name"
42+
tabindex="2"
43+
type="text" >
44+
<p>
45+
<input id="sub-digest"
46+
name="digest"
47+
tabindex="3"
48+
type="checkbox"
49+
value="digest" >
50+
<label for="sub-digest">daily digest?</label></p>
51+
<input class="submit"
52+
name="submit"
53+
tabindex="4"
54+
type="submit"
55+
value="Subscribe to srfi-180" >
56+
<input type="hidden" name="action" value="subscribe">
57+
<input type="hidden" name="list" value="[email protected]"></form></a></li>
58+
<li>
59+
<span class="firefox-column-workaround">
60+
<form method="POST" action="https://www.simplelists.com/subscribe.php">
61+
<p class="title">Unsubscribe from srfi-180 mailing list</p>
62+
<input name="email"
63+
placeholder="email address"
64+
tabindex="5"
65+
type="email" >
66+
<input class="submit"
67+
name="submit"
68+
tabindex="6"
69+
type="submit"
70+
value="Unsubscribe from srfi-180" >
71+
<input name="action"
72+
type="hidden"
73+
value="unsubscribe" >
74+
<input name="list"
75+
type="hidden"
76+
value="[email protected]"></form></a></li></ul>
77+
<h2>Abstract</h2><p>This library describes a JavaScript Object Notation (JSON) parser and printer. It supports streaming parses of JSON that may be bigger than memory.</p></body></html>

0 commit comments

Comments
 (0)