-
Notifications
You must be signed in to change notification settings - Fork 0
/
makeToC.groovy
54 lines (50 loc) · 2.35 KB
/
makeToC.groovy
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
// Copyright (c) 2019 Egon Willighagen <egon.willighagen@gmail.com>
//
// GPL v3
// find all topics and makes a data file to be converted into an Index
//
// it takes one optional argument, which is appended to the output
def chapterCounter = 0
chapters = "order.txt"
new File(chapters).eachLine { chapter ->
if (chapter.startsWith("app")) return;
chapterCounter++
file = "${chapter}.i.md"
sectionCounter = 0
subsectionCounter = 0
new File(file).eachLine { line ->
if (line.startsWith("# ")) {
chapterTitle = line.substring(2).trim()
println "${chapterCounter}. [${chapterTitle}](${chapter}.i.md) <br />"
} else if (line.startsWith("## ") && !line.contains("References")) {
subsectionCounter = 0
sectionTitle = line.substring(3).trim()
sectionCounter++
sectionHref = sectionTitle.toLowerCase().replaceAll(" ", "-").replaceAll("\\.", "")
println "${chapterCounter}.${sectionCounter}. [${sectionTitle}](${chapter}.i.md#${sectionHref}) <br />"
} else if (line.startsWith("### ")) {
subsectionCounter++
sectionTitle = line.substring(4).trim()
sectionHref = sectionTitle.toLowerCase().replaceAll(" ", "-").replaceAll("\\.", "")
println "${chapterCounter}.${sectionCounter}.${subsectionCounter}. [${sectionTitle}](${chapter}.i.md#${sectionHref}) <br />"
} else if (line.startsWith("<section")) {
def instruction = new XmlSlurper().parseText(line)
if (instruction.@level == "##") {
subsectionCounter = 0
sectionTitle = instruction.text()
sectionCounter++
sectionHref = sectionTitle.toLowerCase().replaceAll(" ", "-").replaceAll("\\.", "")
println "${chapterCounter}.${sectionCounter}. [${sectionTitle}](${chapter}.i.md#${sectionHref}) <br />"
} else if (instruction.@level == "###") {
subsectionCounter++
sectionTitle = instruction.text()
sectionHref = sectionTitle.toLowerCase().replaceAll(" ", "-").replaceAll("\\.", "")
println "${chapterCounter}.${sectionCounter}.${subsectionCounter}. [${sectionTitle}](${chapter}.i.md#${sectionHref}) <br />"
} else if (instruction.@level == "#") {
sectionTitle = instruction.text()
sectionHref = sectionTitle.toLowerCase().replaceAll(" ", "-").replaceAll("\\.", "")
println "${chapterCounter}. [${sectionTitle}](${chapter}.i.md) <br />"
}
}
}
}