forked from com-lihaoyi/mill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sc
191 lines (164 loc) · 5.97 KB
/
build.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
// Load dependencies
import $ivy.{`org.pegdown:pegdown:1.6.0`, `com.lihaoyi::scalatags:0.6.5`}
import $file.pageStyles, pageStyles._
import $file.pages, pages._
import scalatags.Text.all._
import ammonite.ops._
import collection.JavaConverters._
import org.pegdown.{PegDownProcessor, ToHtmlSerializer, LinkRenderer, Extensions}
import org.pegdown.ast.{VerbatimNode, ExpImageNode, HeaderNode, TextNode, SimpleNode, TableNode}
val postsFolder = cwd/'pages
interp.watch(postsFolder)
val targetFolder = cwd/'target
val (markdownFiles, otherFiles) = ls! postsFolder partition (_.ext == "md")
markdownFiles.foreach(println)
// Walk the posts/ folder and parse out the name, full- and first-paragraph-
// HTML of each post to be used on their respective pages and on the index
val posts = {
val split = for(path <- markdownFiles) yield {
val Array(number, name) = path.last.split(" - ", 2)
(number, name.stripSuffix(".md"), path)
}
for ((index, name, path) <- split.sortBy(_._1.toInt)) yield {
val processor = new PegDownProcessor(
Extensions.FENCED_CODE_BLOCKS | Extensions.TABLES | Extensions.AUTOLINKS
)
val ast = processor.parseMarkdown(read! path toArray)
val headers = collection.mutable.Buffer.empty[(String, Int)]
class Serializer extends ToHtmlSerializer(new LinkRenderer){
override def printImageTag(rendering: LinkRenderer.Rendering) {
printer.print("<div style=\"text-align: center\"><img")
printAttribute("src", rendering.href)
// shouldn't include the alt attribute if its empty
if(!rendering.text.equals("")){
printAttribute("alt", rendering.text)
}
import collection.JavaConversions._
for (attr <- rendering.attributes) {
printAttribute(attr.name, attr.value)
}
printer.print(" style=\"max-width: 100%; max-height: 500px\"")
printer.print(" /></div>")
}
override def visit(node: HeaderNode) = {
val tag = "h" + node.getLevel()
val id =
node
.getChildren
.asScala
.collect{case t: TextNode => t.getText}
.mkString
headers.append(id -> node.getLevel())
val setId = s"id=${'"'+sanitize(id)+'"'}"
printer.print(s"""<$tag $setId class="${Styles.hoverBox.name}">""")
visitChildren(node)
printer.print(
a(href := ("#" + sanitize(id)), Styles.hoverLink)(
i(cls := "fa fa-link", aria.hidden := true)
).render
)
printer.print(s"</$tag>")
}
override def visit(node: VerbatimNode) = {
printer.println().print(
"""<pre style="background-color: #f8f8f8">""" +
s"""<code style="white-space:pre; background-color: #f8f8f8" class="${node.getType()}">"""
)
var text = node.getText()
// print HTML breaks for all initial newlines
while(text.charAt(0) == '\n') {
printer.print("\n")
text = text.substring(1)
}
printer.printEncoded(text)
printer.print("</code></pre>")
}
override def visit(node: TableNode) = {
currentTableNode = node
printer.print("<table class=\"table table-bordered\">")
visitChildren(node)
printer.print("</table>")
currentTableNode = null
}
}
val postlude = Seq[Frag](
hr,
p(
b("About the Author:"),
i(
" Haoyi is a software engineer, an early contributor to ",
a(href:="http://www.scala-js.org/")("Scala.js"),
", and the author of many open-source Scala tools such as Mill, the ",
a(href:="lihaoyi.com/Ammonite", "Ammonite REPL"), " and ",
a(href:="https://github.com/lihaoyi/fastparse", "FastParse"), ". "
)
),
p(
i(
"If you've enjoy using Mill, or enjoyed using Haoyi's other open ",
"source libraries, please chip in (or get your Company to chip in!) via ",
a(href:="https://www.patreon.com/lihaoyi", "Patreon"), " so he can ", "continue his open-source work"
)
),
hr
).render
val rawHtmlContent = new Serializer().toHtml(ast) + postlude
PostInfo(name, headers, rawHtmlContent)
}
}
def formatRssDate(date: java.time.LocalDate) = {
date
.atTime(0, 0)
.atZone(java.time.ZoneId.of("UTC"))
.format(java.time.format.DateTimeFormatter.RFC_1123_DATE_TIME)
}
@main
def main(publish: Boolean = false) = {
rm! targetFolder
mkdir! targetFolder/'page
for(otherFile <- otherFiles){
cp(otherFile, targetFolder/'page/(otherFile relativeTo postsFolder))
}
cp(pwd/"favicon.png", targetFolder/"favicon.ico")
cp(pwd/"logo-white.svg", targetFolder/"logo-white.svg")
%('zip, "-r", targetFolder/"example-1.zip", "example-1")(pwd)
%('zip, "-r", targetFolder/"example-2.zip", "example-2")(pwd)
for(i <- posts.indices){
val post = posts(i)
val adjacentLinks = div(display.flex, flexDirection.row, justifyContent.spaceBetween)(
for((j, isNext) <- Seq(i-1 -> false, i+1 -> true))
yield posts.lift(j) match{
case None => div()
case Some(dest) =>
renderAdjacentLink(
isNext,
dest.name,
(i == 0, j == 0) match {
case (true, true) => s"index.html"
case (true, false) => s"page/${sanitize(dest.name)}.html"
case (false, true) => s"../index.html"
case (false, false) => s"${sanitize(dest.name)}.html"
}
)
}
)
write(
if (i == 0) targetFolder / "index.html"
else targetFolder/'page/s"${sanitize(post.name)}.html",
postContent(
i == 0,
post,
adjacentLinks,
posts.map(_.name)
)
)
}
if (publish){
implicit val wd = cwd/'target
%git 'init
%git('add, "-A", ".")
%git('commit, "-am", "first commit")
%git('remote, 'add, 'origin, "[email protected]:lihaoyi/mill.git")
%git('push, "-uf", 'origin, "master:gh-pages")
}
}