Skip to content

Commit aa6e2bf

Browse files
Hai Nguyenvincentngo
Hai Nguyen
authored andcommitted
GitHub Pages Script Updates (kodecocodes#670)
* Move inline css to the main stylesheet - github-light.css & parse the repo README to html instead of generating one. * Minor clean up * Fix image link * Parse other markdown files
1 parent a5d3185 commit aa6e2bf

File tree

3 files changed

+110
-74
lines changed

3 files changed

+110
-74
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@ script:
5050
- xcodebuild test -project ./Ternary\ Search\ Tree/Tests/Tests.xcodeproj -scheme Tests | xcpretty -f `xcpretty-travis-formatter`
5151

5252
after_success:
53+
5354
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then ./gfm-render.sh; fi

README.markdown

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Swift Algorithm Club](/Images/SwiftAlgorithm-410-transp.png)
1+
![Swift Algorithm Club](Images/SwiftAlgorithm-410-transp.png)
22

33
# Welcome to the Swift Algorithm Club!
44

@@ -156,14 +156,14 @@ Most of the time using just the built-in `Array`, `Dictionary`, and `Set` types
156156
- [Splay Tree](Splay%20Tree/). A self balancing binary search tree that enables fast retrieval of recently updated elements.
157157
- [Threaded Binary Tree](Threaded%20Binary%20Tree/). A binary tree that maintains a few extra variables for cheap and fast in-order traversals.
158158
- [Segment Tree](Segment%20Tree/). Can quickly compute a function over a portion of an array.
159-
- [Lazy Propagation](https://github.com/raywenderlich/swift-algorithm-club/tree/master/Segment%20Tree/LazyPropagation)
159+
- [Lazy Propagation](https://github.com/raywenderlich/swift-algorithm-club/tree/master/Segment%20Tree/LazyPropagation)
160160
- kd-Tree
161161
- [Heap](Heap/). A binary tree stored in an array, so it doesn't use pointers. Makes a great priority queue.
162162
- Fibonacci Heap
163163
- [Trie](Trie/). A special type of tree used to store associative data structures.
164164
- [B-Tree](B-Tree/). A self-balancing search tree, in which nodes can have more than two children.
165165
- [QuadTree](QuadTree/). A tree with 4 children.
166-
- [Octree](Octree/). A tree with 8 children.
166+
- [Octree](Octree/). A tree with 8 children.
167167

168168
### Hashing
169169

@@ -208,7 +208,7 @@ For more information, check out these great books:
208208
- [The Algorithm Design Manual](http://www.algorist.com) by Skiena
209209
- [Elements of Programming Interviews](http://elementsofprogramminginterviews.com) by Aziz, Lee, Prakash
210210
- [Algorithms](http://www.cs.princeton.edu/~rs/) by Sedgewick
211-
- [Grokking Algorithms](https://www.manning.com/books/grokking-algorithms) by Aditya Bhargava
211+
- [Grokking Algorithms](https://www.manning.com/books/grokking-algorithms) by Aditya Bhargava
212212

213213
The following books are available for free online:
214214

gfm-render.sh

+105-70
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,108 @@
11
#!/usr/bin/env bash
22

3-
# $1 - readme
3+
set -e
4+
5+
# $1 - readme file name
46
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+
)
2315

2416
# network call to GitHub API
2517
json="{\"text\":\"$content\",\"mode\":\"gfm\",\"context\":\"$USERNAME/swift-algorithm-club\"}"
2618
echo -e "$(curl -s --data "$json" -u $USERNAME:$TOKEN https://api.github.com/markdown)"
2719
}
2820

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-
3721
# download github systax highlight stylesheet
3822
echo "> Downloading github-light.css..."
3923
curl -s -O https://raw.githubusercontent.com/primer/github-syntax-light/master/lib/github-light.css
4024

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+
4192
# if index.html does not exist, create one;
4293
# 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
48106

49107
# iterate immediate directories
50108
find . -maxdepth 1 -type d | while read folder; do
@@ -54,53 +112,30 @@ find . -maxdepth 1 -type d | while read folder; do
54112
if [[ -f $folder/README.md ]]; then readme="$folder/README.md"; fi
55113
if [[ -f $folder/README.markdown ]]; then readme="$folder/README.markdown"; fi
56114

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..."
61121

62-
cat > "$folder/index.html" << EOF
122+
cat > "$folder/index.html" << EOF
63123
<!DOCTYPE html>
64124
<head>
125+
<title>$name</title>
65126
<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>
92127
</head>
93128
<body>
94-
$(render_markdown_to_html "$readme")
129+
<div id="container">$(render_markdown_to_html "$readme")</div>
95130
</body>
96131
</html>
97132
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
101133
done
102134

103-
echo "<!DOCTYPE html><body><h1>Swift Algorithm</h1><ul>$(echo -n $(cat index.html))</ul></body></html>" > index.html
104-
105135
# 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

Comments
 (0)