-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgen-articles.sh
executable file
·59 lines (51 loc) · 1.5 KB
/
gen-articles.sh
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
#!/usr/bin/env bash
# Convert articles from Markdown to HTML
set -e # Exit when any command fails.
set -x # Echo all commands.
# Generate article
function generate_article() {
local article=$1
local html=articles/$article.html
local tmp=$article.tmp
# Generate the article header
cat scripts/articles/$article-header.html \
scripts/rustdoc-header.html \
>article-rustdoc-header.html
# Convert the article with rustdoc
rustdoc \
--output articles \
--html-in-header article-rustdoc-header.html \
--html-before-content scripts/rustdoc-before.html \
--html-after-content scripts/rustdoc-after.html \
src/$article.md
# Delete the article header
rm article-rustdoc-header.html
# Fix the rustdoc output to work with Prism.js code highlighting
# Change...
# <pre class="...">...</pre>
# To...
# <pre class="..."><code>...</code></pre>
# Change...
# <code><code>...</code></code>
# To...
# <code>...</code>
cp $html $tmp
cat $tmp \
| sed 's/\(<pre[^>]*>\)/\1<code>/' \
| sed 's/<\/pre>/<\/code><\/pre>/' \
| sed 's/<code><code>/<code>/' \
| sed 's/<\/code><\/code>/<\/code>/' \
>$html
rm $tmp
}
# Generate an article
# generate_article rust ; exit
# Generate all articles in src
for f in src/*.md
do
echo $f
filename=$(basename -- "$f")
# extension="${filename##*.}"
filename="${filename%.*}"
generate_article $filename
done