-
Notifications
You must be signed in to change notification settings - Fork 1
/
questions.html
32 lines (28 loc) · 892 Bytes
/
questions.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
<!doctype html>
<html>
<head>
<title>.questions</title>
<meta charset="utf-8" />
</head>
<body>
<h2>Ask some questions</h2>
<ul>
<li><code>Who likes ...?</code></li>
<li><code>Who is liked by ...?</code></li>
<li><code>Who is ...?</code></li>
<li><code>Who is older than ...?</code></li>
<li><code>Who is older than ... years?</code></li>
<li><code>Who knows ...?</code></li>
<li><code>Who knows someone who knows ...?</code></li>
</ul>
<input id="question" size="40" />
<pre id="answer">
</pre>
<textarea id="data" cols="80" rows="20">
</textarea>
<script src="target/muq.js"></script>
<script>
muq.example.setup_qa("question", "answer", "data");
</script>
</body>
</html>