1
1
#! /usr/bin/env bash
2
2
3
- # $1 - readme
3
+ set -e
4
+
5
+ # $1 - readme file name
4
6
function render_markdown_to_html {
5
- # escape escaping characters
6
- if [[ $( uname) == " Darwin" ]]; then
7
- content=$(
8
- cat " $1 " \
9
- | sed ' s/\\/\\\\/g' \
10
- | sed ' s/"/\\"/g' \
11
- | sed $' s/\t /\\\\ t/g' \
12
- | sed -e ' :a' -e ' N' -e ' $!ba' -e ' s/\n/\\\n/g' \
13
- )
14
- else
15
- content=$(
16
- cat " $1 " \
17
- | sed ' s/\\/\\\\/g' \
18
- | sed ' s/"/\\"/g' \
19
- | sed ' s/\t/\\t/g' \
20
- | sed ' :a;N;$!ba;s/\n/\\n/g' \
21
- )
22
- fi
7
+ # escape escaping characters on Darwin only
8
+ content=$(
9
+ cat " $1 " \
10
+ | sed ' s/\\/\\\\/g' \
11
+ | sed ' s/"/\\"/g' \
12
+ | sed $' s/\t /\\\\ t/g' \
13
+ | sed -e ' :a' -e ' N' -e ' $!ba' -e ' s/\n/\\\n/g' \
14
+ )
23
15
24
16
# network call to GitHub API
25
17
json=" {\" text\" :\" $content \" ,\" mode\" :\" gfm\" ,\" context\" :\" $USERNAME /swift-algorithm-club\" }"
26
18
echo -e " $( curl -s --data " $json " -u $USERNAME :$TOKEN https://api.github.com/markdown) "
27
19
}
28
20
29
- # $1 - comment
30
- function push_to_gh_pages {
31
- git checkout -b gh-pages
32
- git add .
33
- git commit -m " $1 "
34
- git push -f https://$TOKEN @github.com/$USERNAME /swift-algorithm-club.git gh-pages
35
- }
36
-
37
21
# download github systax highlight stylesheet
38
22
echo " > Downloading github-light.css..."
39
23
curl -s -O https://raw.githubusercontent.com/primer/github-syntax-light/master/lib/github-light.css
40
24
25
+ # slightly modify the main stylesheet
26
+ echo " > Modifying github-light.css..."
27
+ cat >> github-light.css << EOF
28
+ #container {
29
+ margin: 0 auto;
30
+ width: 75%;
31
+ min-width: 768px;
32
+ max-width: 896px;
33
+ position: relative;
34
+ }
35
+
36
+ body {
37
+ font-size: 18px;
38
+ }
39
+
40
+ code {
41
+ padding: 0.2em;
42
+ margin: 0;
43
+ font-size: 85%;
44
+ background-color: #f6f8fa;
45
+ line-height: 1.45;
46
+ border-radius: 3px
47
+ }
48
+
49
+ pre code {
50
+ padding: 0px;
51
+ background-color: transparent;
52
+ }
53
+
54
+ .highlight {
55
+ margin: 0px;
56
+ padding: 0px 16px;
57
+ font-size: 85%;
58
+ line-height: 1.45;
59
+ overflow: auto;
60
+ background-color: #f6f8fa;
61
+ border-radius: 3px;
62
+ }
63
+
64
+ @media (max-width: 768px) {
65
+ #container {
66
+ position: absolute;
67
+ margin: 0;
68
+ width: 100%;
69
+ height: 100%;
70
+ min-width: 100%;
71
+ }
72
+ }
73
+ EOF
74
+
75
+ # other markdown articles
76
+ for title in " What are Algorithms" " Big-O Notation" " Algorithm Design" " Why Algorithms" ; do
77
+ echo " > Generating $title .html..."
78
+
79
+ cat > " $title .html" << EOF
80
+ <!DOCTYPE html>
81
+ <head>
82
+ <title>$title </title>
83
+ <link rel="stylesheet" type="text/css" href="github-light.css">
84
+ </head>
85
+ <body>
86
+ <div id="container">$( render_markdown_to_html " $title .markdown" ) </div>
87
+ </body>
88
+ </html>
89
+ EOF
90
+ done
91
+
41
92
# if index.html does not exist, create one;
42
93
# otherwise, empty its content.
43
- if [[ -z index.html ]]; then
44
- touch index.html
45
- else
46
- > index.html
47
- fi
94
+ echo " > Generating index.html..."
95
+ cat > index.html << EOF
96
+ <!DOCTYPE html>
97
+ <head>
98
+ <title>Swift Algorithm Club</title>
99
+ <link rel="stylesheet" type="text/css" href="github-light.css">
100
+ </head>
101
+ <body>
102
+ <div id="container">$( render_markdown_to_html README.markdown | sed ' s/.markdown/.html/g' ) </div>
103
+ </body>
104
+ </html>
105
+ EOF
48
106
49
107
# iterate immediate directories
50
108
find . -maxdepth 1 -type d | while read folder; do
@@ -54,53 +112,30 @@ find . -maxdepth 1 -type d | while read folder; do
54
112
if [[ -f $folder /README.md ]]; then readme=" $folder /README.md" ; fi
55
113
if [[ -f $folder /README.markdown ]]; then readme=" $folder /README.markdown" ; fi
56
114
57
- # exclude the repository's README
58
- if [[ ! (-z $readme ) && ($readme ! = " ./README.markdown" ) ]]; then
59
- name=$( basename " $folder " )
60
- echo " > Generating $name /index.html..."
115
+ # skip if there is no README or it it the README of the repository
116
+ if [[ (-z $readme ) || $readme == " ./README.markdown" ]]; then continue ; fi
117
+
118
+ # render README to HTML
119
+ name=$( basename " $folder " )
120
+ echo " > Generating $name /index.html..."
61
121
62
- cat > " $folder /index.html" << EOF
122
+ cat > " $folder /index.html" << EOF
63
123
<!DOCTYPE html>
64
124
<head>
125
+ <title>$name </title>
65
126
<link rel="stylesheet" type="text/css" href="../github-light.css">
66
- <style>
67
- body {
68
- font-size: 18px;
69
- }
70
- code {
71
- padding: 0.2em;
72
- margin: 0;
73
- font-size: 85%;
74
- background-color: #f6f8fa;
75
- line-height: 1.45;
76
- border-radius: 3px
77
- }
78
- pre code {
79
- padding: 0px;
80
- background-color: transparent;
81
- }
82
- .highlight {
83
- margin: 0px;
84
- padding: 0px 16px;
85
- font-size: 85%;
86
- line-height: 1.45;
87
- overflow: auto;
88
- background-color: #f6f8fa;
89
- border-radius: 3px;
90
- }
91
- </style>
92
127
</head>
93
128
<body>
94
- $( render_markdown_to_html " $readme " )
129
+ <div id="container"> $( render_markdown_to_html " $readme " ) </div>
95
130
</body>
96
131
</html>
97
132
EOF
98
- # temporarily write the list of HTML filenames to the main index.html
99
- echo " $lists <li><a href=\" $name /index.html\" >$name </a></li>" >> index.html
100
- fi
101
133
done
102
134
103
- echo " <!DOCTYPE html><body><h1>Swift Algorithm</h1><ul>$( echo -n $( cat index.html) ) </ul></body></html>" > index.html
104
-
105
135
# push to gh-pages
106
- if [[ $CI = true ]]; then push_to_gh_pages " Generated by TravisCI on $( date +%D) " ; fi
136
+ if [[ $CI = true ]]; then
137
+ git checkout -b gh-pages
138
+ git add .
139
+ git commit -m " $Generated by TravisCI on $( date +%D) "
140
+ git push -f https://$TOKEN @github.com/$USERNAME /swift-algorithm-club.git gh-pages
141
+ fi
0 commit comments