-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (79 loc) · 3.42 KB
/
index.html
File metadata and controls
81 lines (79 loc) · 3.42 KB
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
<!doctype html>
<html lang="en">
<head>
<title>PG Documentation</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-3">
<h2>PG Documentation</h2>
<p>
This is the documentation for PG, the problem authoring language for WeBWorK. The links below include
POD (Plain Old Documentation), explaining how to use PG macros and related modules as well as sample
problems.
</p>
<div class="list-group">
<a
href="sample-problems/categories.html"
class="list-group-item list-group-item-action"
aria-current="true"
>
<div class="w-100">
<span class="h4">Sample Problems by Categories</span>
</div>
<p class="mb-0">A list of most sample problems by category.</p>
</a>
<a
href="sample-problems/subjects.html"
class="list-group-item list-group-item-action"
aria-current="true"
>
<div class="w-100">
<span class="h4">Sample Problems by Subject Area</span>
</div>
<p class="mb-0">A list of most sample problems by subject area.</p>
</a>
<a
href="sample-problems/techniques.html"
class="list-group-item list-group-item-action"
aria-current="true"
>
<div class="w-100">
<span class="h4">Problem Techniques</span>
</div>
<p class="mb-0">A list of most sample problems by problem technique.</p>
</a>
<a
href="sample-problems/macros.html"
class="list-group-item list-group-item-action"
aria-current="true"
>
<div class="w-100">
<span class="h4">Sample Problems by Macro</span>
</div>
<p class="mb-0">For many macros, this lists all sample problems used by the macro.</p>
</a>
<a href="pod/pg/index.html" class="list-group-item list-group-item-action" aria-current="true">
<div class="w-100">
<span class="h4">PG POD</span>
</div>
<p class="mb-0">A list all PG Plain Old Documenation.</p>
</a>
<a
href="https://wiki.openwebwork.org/wiki/WeBWorK_Main_Page"
class="list-group-item list-group-item-action"
aria-current="true"
>
<div class="w-100">
<span class="h4">WeBWorK Wiki</span>
</div>
<p class="mb-0">
The WeBWorK Documentation Wiki which contains much more documentation for both WeBWorK and PG.
</p>
</a>
</div>
</div>
</body>
</html>