blob: 868999431c89aac3961b0bc59ff04315968075cc (
plain)
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
|
#!/bin/sh
# This script is intended to copy a single HTML documentation page generated
# using sphinx to the leap.se amber repository that builds the website.
#
# Because amber works differently than sphinx, the following modifications are
# made in the sphinx automatically generated single html page:
#
# - Remove everything from the start up to "<body>". Amber will take care of
# adding the HTML template to the top of the file.
#
# - Remove everything from "</body>" up to "</html>". Amber will take care of
# adding the HTML template to the end of the file.
#
# - Remove the navigation div. Amber will take care of adding it's own TOC.
#
# - Remove the main <h1> tag. Amber adds it automatically.
#
# - Remove all unicode paragraph characters. They are not hidden by amber and
# would make the page ugly.
#
# - Move h2, h3, h4 to one level up (i.e. h1, h2, h3), because amber expects
# this kind of page organization in order to render TOC and navigation
# correctly.
#
# - Turn h5-h7 to simple emphasized paragraphs, otherwise they would be
# rendered in a huge TOC.
#
# - Remove the indices and tables from the end of the file, as amber does it
# by itself.
BASEDIR=$(dirname "$0")
# The following directory structure works well in my filesystem, you might have
# to adapt to your structure/organization.
HEADER=${BASEDIR}/amber-header.txt
SOURCE=${BASEDIR}/../../docs/_build/singlehtml/index.html
TARGET=${BASEDIR}/../../../leap_se/pages/docs/design/soledad.html
cat ${HEADER} > ${TARGET}
cat ${SOURCE} | sed \
-e '/<!DOCTYPE/,/<body>/d' \
-e '/role="navigation"/,+5d' \
-e '/<\/body>/,/<\/html>/d' \
-e '/<h1>Soledad.*<\/h1>/d' \
-e 's/¶//g' \
-e 's/<\(\/\)\?h2>/<\1h1>/g' \
-e 's/<\(\/\)\?h3>/<\1h2>/g' \
-e 's/<\(\/\)\?h4>/<\1h3>/g' \
-e 's/<h[5-7]>\(.*\)<\/h[5-7]>/<p><b>\1<\/b><\/p>/g' \
-e '/indices-and-tables/,$d' \
>> ${TARGET}
|