-
Notifications
You must be signed in to change notification settings - Fork 38
/
site.sc
executable file
·224 lines (182 loc) · 6.73 KB
/
site.sc
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#!/usr/bin/env amm
import scala.xml.Elem
import scala.xml.NodeBuffer
import ammonite.ops.{%%, _}
implicit val wd = pwd
println("packing client")
%%("mill", "client.pack")
import $file.tuts
import tuts._
println("Generating scaladocs")
%%("mill", "jvmRoot.docs")
val mathjax =
"""
|<!-- mathjax config similar to math.stackexchange -->
|<script type="text/x-mathjax-config">
|MathJax.Hub.Config({
|jax: ["input/TeX", "output/HTML-CSS"],
|tex2jax: {
| inlineMath: [ ['$', '$'] ],
| displayMath: [ ['$$', '$$']],
| processEscapes: true,
| skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
|},
|messageStyle: "none",
|"HTML-CSS": { preferredFont: "TeX", availableFonts: ["STIX","TeX"] }
|});
|</script>
|<script type="text/javascript" async
| src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
| </script>
""".stripMargin
def head(rel: String = "") =
s"""
|<head>
| <meta charset="utf-8">
| <meta http-equiv="X-UA-Compatible" content="IE=edge">
| <meta name="viewport" content="width=device-width, initial-scale=1">
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
| <title>ProvingGround</title>
| <link rel="icon" href="${rel}IIScLogo.jpg">
|
| <!-- Bootstrap -->
| <link href="${rel}css/bootstrap.min.css" rel="stylesheet">
| <link href="${rel}css/katex.min.css" rel="stylesheet">
| <link href="${rel}css/main.css" rel="stylesheet">
|
|
| <link rel="stylesheet" href="${rel}css/zenburn.css">
| <script src="${rel}js/highlight.pack.js"></script>
| <script>hljs.initHighlightingOnLoad();</script>
|
| <script src="${rel}js/ace.js"></script>
| <script src="${rel}js/katex.min.js"></script>
|
| $mathjax
| </head>
|
""".stripMargin
def nav(rel: String = ""): Elem =
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">ProvingGround</span>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href={s"${rel}index.html#"}>Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
Tutorials (notes)<span class="caret"></span></a>
<ul class="dropdown-menu">
{tutList(rel)}
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li> <a href={s"${rel}scaladoc/provingground/index.html"} target="_blank">ScalaDocs</a></li>
<li> <a href="https://github.com/siddhartha-gadgil/ProvingGround" target="_blank">
<img src={s"${rel}GitHub-Mark-Light-32px.png"} alt="Github"></img> </a> </li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
def foot(rel: String): String =
s"""
|<div class="container-fluid">
| <p> </p>
| <p> </p>
| <p> </p>
| <div class="footer navbar-fixed-bottom bg-primary">
| <h4>
| Developed by:
| <a href="http://math.iisc.ac.in/~gadgil" target="_blank"> Siddhartha Gadgil</a>
|
| </h4>
|
| </div>
|</div>
|<script type="text/javascript" src="${rel}js/jquery-2.1.4.min.js"></script>
|<script type="text/javascript" src="${rel}js/bootstrap.min.js"></script>
|<script type="text/javascript" src="${rel}js/provingground.js"></script>
|<script>
| provingground.main()
|</script>
""".stripMargin
import $ivy.`com.atlassian.commonmark:commonmark:0.11.0`
import org.commonmark.node._
import org.commonmark.parser.Parser
import org.commonmark.renderer.html.HtmlRenderer
def fromMD(s: String) : String = {
val parser = Parser.builder().build()
val document = parser.parse(s)
val renderer = HtmlRenderer.builder().build()
renderer.render(document).replace("$<code>", "$").replace("</code>$", "$")
}
def threeDash(s: String) = s.trim == "---"
def withTop(l: Vector[String]) = (l.filter(threeDash).size == 2) && threeDash(l.head)
def body(l: Vector[String]) = if (withTop(l)) l.tail.dropWhile((l) => !threeDash(l)).tail else l
def topmatter(lines: Vector[String]) = if (withTop(lines)) Some(lines.tail.takeWhile((l) => !threeDash(l))) else None
def titleOpt(l: Vector[String]) =
for {
tm <- topmatter(l)
ln <- tm.find(_.startsWith("title: "))
} yield ln.drop(6).trim
def filename(s: String) = s.toLowerCase.replaceAll("\\s", "-")
case class Tut(name: String, content: String, optTitle: Option[String]){
val title = optTitle.getOrElse(name)
val target = pwd / "docs" / "tuts"/ s"$name.html"
def url(rel: String) = s"${rel}tuts/$name.html"
lazy val output =
doc(
content,
"../",
title)
def save = write.over(target, output)
}
def getTut(p: Path) =
{
println(s"Compiling tutorial ${p.name}")
val l = mkTut(read(p)).split("\n").toVector
val name = titleOpt(l).map(filename).getOrElse(p.name.dropRight(p.ext.length + 1))
val content = fromMD(body(l).mkString("\n"))
Tut(name, content, titleOpt(l))
}
lazy val allTuts = ls(tutdir).map(getTut)
def tutList(rel: String) =
allTuts.map(
(tut) =>
<li><a href={s"${tut.url(rel)}"}>{tut.title}</a></li>
)
def doc(s: String, rel: String, t: String = "") =
s"""
|<!DOCTYPE html>
|<html lang="en">
|${head(rel)}
|<body>
|${nav(rel)}
|<div class="container">
|<h1 class="text-center">$t</h1>
|
|<div class="text-justify">
|$s
|
|</div>
|</div>
|${foot(rel)}
|</body>
|</html>
""".stripMargin
val home = doc(
fromMD(body(read.lines(pwd / "docs" /"index.md").toVector).mkString("", "\n", "")), "", "ProvingGround: Automated Theorem proving by learning")
println("writing site")
write.over(pwd / "docs" / "index.html", home)
allTuts.foreach((tut) => write.over(tut.target, tut.output))