forked from mrchristian/Workshop-Publishing-from-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
268 lines (254 loc) · 9.63 KB
/
index.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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="assets/favicon/favicon.png">
<!-- Stylesheets -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css" title="Simple">
<link rel="stylesheet" href="assets/css/theme-custom.css">
<!-- Alternate Stylesheets -->
<link rel="stylesheet alternate" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-defaults.css" title="Defaults">
<link rel="stylesheet alternate" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css" title="Simple Dark">
<!-- Font Awesome Stylesheets -->
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free/css/fontawesome.css" />
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free/css/brands.css" />
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free/css/regular.css" />
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/fontawesome-free/css/solid.css" />
<!-- Other -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-top-banner-plugin@latest/dist/style.css" />
<style>
nav li a::before {
border-bottom: none !important; /* Removing dots in toc */
}
a.app-name-link {
border-bottom: none !important;
}
div.sources {
font-size: small;
top: 10px;
right: 10px;
position: absolute;
}
div.sources a {
display: inline-block;
margin-right: 8px;
}
div.sources .disabled {
display: none;
}
#toc ol li ol li ol {
display: none;
}
</style>
<script>
function throttle(fn, wait) {
// Source: https://www.sitepoint.com/throttle-scroll-events/
let time = Date.now()
return function() {
if ((time + wait - Date.now()) < 0) {
fn()
time = Date.now()
}
}
}
// Load all data from uhtml page
fetch('uhtml/index.html').then(
response => response.text()
).then(
string => {
const parser = new DOMParser()
const doc = parser.parseFromString(string, 'text/html')
doc.head.querySelectorAll('link').forEach(link => {
const href = link.getAttribute('href')
link.setAttribute('href', `uhtml/${href}`)
})
doc.body.querySelectorAll('img').forEach(img => {
const src = img.getAttribute('src')
img.setAttribute('src', `uhtml/${src}`)
})
// Copy title/subtitle to sidebar
const title = doc.body.querySelector('h1.booktitle')?.innerHTML || ''
const subtitle = doc.body.querySelector('h2.booksubtitle')?.innerHTML || ''
document.querySelector('.app-name-link').innerHTML = `${title}<br>${subtitle}`
// Use title for ebook + pdf download name
document.querySelector('div.sources a.epub').setAttribute('download', `${title}.epub`)
document.querySelector('div.sources a.pdf').setAttribute('download', `${title}.pdf`)
// Copy TOC to sidebar
const mainTocNode = doc.body.querySelector('nav[role=doc-toc]')
const tocNode = document.body.querySelector('#toc')
tocNode.innerHTML += mainTocNode.innerHTML
// Move copyright page content to sidebar
const copyrightPageNode = doc.body.querySelector('div.copyrightpage')
const sideBarNavNode = document.body.querySelector('div.sidebar-nav')
sideBarNavNode.innerHTML += copyrightPageNode.innerHTML
copyrightPageNode.parentNode.removeChild(copyrightPageNode)
// Copy body and header content
Array.from(doc.head.children).forEach(node => document.head.appendChild(node))
const contentNode = document.body.querySelector('#main')
Array.from(doc.body.children).forEach(node => contentNode.appendChild(node))
// Enable toggle sidebar button
document.querySelector('.sidebar-toggle-button').addEventListener('click', () => document.body.classList.toggle('close'))
// Mark current item on scroll
function onscroll() {
const positions = Array.from(
document.querySelectorAll('#main *[id]')
)
let currentNode
for (i = 0; i < positions.length; i++) {
const node = positions[i]
const top = node.getClientRects()[0]?.top
if (top > window.innerHeight) {
break
}
currentNode = node
if (top > 0) {
break
}
}
if (currentNode) {
const id = currentNode.id
const linkNode = document.querySelector(`.sidebar-nav a[href="#${id}"]`)
if (linkNode) {
const active = document.querySelector('.sidebar-nav li.active')
if (active) {
active.classList.remove('active')
}
linkNode.parentNode.classList.add('active')
}
}
}
window.document.addEventListener(
'scroll',
throttle(onscroll, 1000)
)
}
)
// Set links for other output formats.
fetch('setup.json').then(
response => response.json()
).then(setup => {
if (setup.podURL) {
const link = document.querySelector("div.sources a.pod")
link.href = setup.podURL
link.classList.remove('disabled')
}
if (setup.vivlioURL) {
const link = document.querySelector("div.sources a.vivlio")
link.href = `${setup.vivlioURL}#src=${new URL("uhtml/index.html", window.location.href).href}&bookMode=true`
link.classList.remove('disabled')
}
if (setup.repoURL) {
const link = document.querySelector("div.sources a.repo")
link.href = setup.repoURL
link.classList.remove('disabled')
}
if (setup.repoURL && setup.repoBranch) {
const link = document.querySelector("div.sources a.uhtml")
link.href = `${setup.repoURL}tree/${setup.repoBranch}/uhtml`
}
// Check which other sources exist and enable links
fetch('book.epub', {
method: "HEAD"
}).then(res => {
if (res.ok) {
document.querySelector("div.sources a.epub").classList.remove('disabled')
}
}).catch(err => {})
fetch('book.pdf', {
method: "HEAD"
}).then(res => {
if (res.ok) {
document.querySelector("div.sources a.pdf").classList.remove('disabled')
}
}).catch(err => {})
fetch('epub/EPUB/document.opf', {
method: "HEAD"
}).then(res => {
if (res.ok) {
const link = document.querySelector("div.sources a.epub-source")
if (setup.repoURL && setup.repoBranch) {
link.href = `${setup.repoURL}tree/${setup.repoBranch}/epub`
}
link.classList.remove('disabled')
}
}).catch(err => {})
fetch('html/index.html', {
method: "HEAD"
}).then(res => {
if (res.ok) {
const link = document.querySelector("div.sources a.html")
if (setup.repoURL && setup.repoBranch) {
link.href = `${setup.repoURL}tree/${setup.repoBranch}/html`
}
link.classList.remove('disabled')
}
}).catch(err => {})
fetch('jats/manuscript.xml', {
method: "HEAD"
}).then(res => {
if (res.ok) {
const link = document.querySelector("div.sources a.jats")
if (setup.repoURL && setup.repoBranch) {
link.href = `${setup.repoURL}tree/${setup.repoBranch}/jats`
}
link.classList.remove('disabled')
}
}).catch(err => {})
fetch('latex/book.tex', {
method: "HEAD"
}).then(res => {
if (res.ok) {
const link = document.querySelector("div.sources a.latex")
if (setup.repoURL && setup.repoBranch) {
link.href = `${setup.repoURL}tree/${setup.repoBranch}/latex`
}
link.classList.remove('disabled')
}
}).catch(err => {})
})
</script>
</head>
<body class="ready ready-fix sticky">
<main>
<button class="sidebar-toggle" aria-label="Menu">
<div class="sidebar-toggle-button">
<span></span>
<span></span>
<span></span>
</div>
</button>
<aside class="sidebar">
<h1 class="app-name"><a class="app-name-link" data-nosearch="" href="#top"></a></h1>
<div class="sidebar-nav">
<ul>
<li id="toc">
<p><a href="#main" title="Table of contents">Table of contents</a></p>
</li>
</ul>
<hr>
<img src="logo/logo.png" alt="logo" width="100%">
</div>
</aside>
<section class="content">
<div class="sources">
<label>Other formats:</label>
<a class="pod disabled" href="#">Order a copy</a>
<a class="vivlio disabled" href="#">Vivliostyle</a>
<a class="repo disabled" href="#">Repository</a>
<a class="epub disabled" href="book.epub">EPUB</a>
<a class="pdf disabled" href="book.pdf">PDF</a>
<a class="latex disabled" href="latex">LaTeX</a>
<a class="epub-source disabled" href="epub">EPUB Source</a>
<a class="html disabled" href="html">HTML</a>
<a class="jats disabled" href="jats">JATS</a>
<a class="uhtml" href="uhtml">Unified HTML</a>
</div>
<article class="markdown-section" id="main"></article>
</section>
</main>
<script src="https://hypothes.is/embed.js" async></script>
</body>
</html>