Skip to content

Commit fac7922

Browse files
committedJan 29, 2020
added a script to convert the /docs to use local files (for offline)
1 parent 89c3e2e commit fac7922

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed
 

‎tools/imgmap.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/usr/bin/python3
2+
# -*- coding: UTF-8 -*-
3+
4+
import os
5+
6+
# This code copies the markdown documents in the /docs folder to the
7+
# /localdocs folder, while converting image links to local links.
8+
# Basically, it makes a version of the readme that can be viewed offline.
9+
10+
# generate the image map
11+
# first, open the imgmap.txt
12+
f = open("imgmap.txt",'r')
13+
s = f.read().split('\n')
14+
f.close()
15+
16+
# Now lets generate a list
17+
imgmap = []
18+
for i in s:
19+
if i != '':
20+
imgmap += [i.split(' ')]
21+
22+
# Now let's loop through all of the .md files in /docs and copy to /localdocs
23+
for root, dirs, files in os.walk(os.path.join("..", "docs")):
24+
for file in files:
25+
if file.endswith(".md"):
26+
fn = os.path.join(root, file)
27+
f = open(fn,'r')
28+
s = f.read()
29+
f.close()
30+
for i in imgmap:
31+
s=s.replace(i[0],"img/"+i[1])
32+
f = open(fn.replace("docs","localdocs"),'w')
33+
f.write(s)
34+
f.close()

‎tools/imgmap.txt

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
https://i.imgur.com/w8HdE5Q.png img000.png
2+
https://i.imgur.com/yfXOz7P.png img001.png
3+
https://i.imgur.com/azgclwr.png img002.png
4+
https://i.imgur.com/wbWStSQ.png img003.png
5+
https://i.imgur.com/WiDA6Ib.png img004.png
6+
https://i.imgur.com/fPqKxCD.png img006.png
7+
https://i.imgur.com/JGllOAw.gif img007.gif
8+
https://i.imgur.com/r3ylxgN.png keycodes.png
9+
https://i.imgur.com/pxvzqNF.png img007.png
10+
https://i.imgur.com/K96TsgX.png img008.png
11+
https://i.imgur.com/s6WnO6N.png 004.png
12+
https://i.imgur.com/0c3FR7o.png 00N.png
13+
https://i.imgur.com/pZzJxQX.png 00M.png
14+
https://i.imgur.com/LxAaTR4.png 00I.png
15+
https://i.imgur.com/px7677d.png 008.png
16+
https://i.imgur.com/3ihVTvB.png 007.png
17+
https://i.imgur.com/CpcXi3e.png 00F.png
18+
https://i.imgur.com/XUNyFii.png 009.png
19+
https://i.imgur.com/Wp9I4RA.png 00J.png
20+
https://i.imgur.com/V2YY6bP.png 00L.png
21+
https://i.imgur.com/Abgbg9h.png 00G.png
22+
https://i.imgur.com/DTckrFW.gif 006.gif
23+
https://i.imgur.com/lgqyf1o.png 00H.png
24+
https://i.imgur.com/rvGAHYa.png 00K.png
25+
https://i.imgur.com/vIIqxSy.png 006.png
26+
https://i.imgur.com/y9tsl5u.png 001.png
27+
https://i.imgur.com/EZ8FunF.png 00C.png
28+
https://i.imgur.com/g1FIDbu.gif 003.gif
29+
https://i.imgur.com/TLgaTui.gif 005.gif
30+
https://i.imgur.com/8F4CDB5.png 00E.png
31+
https://i.imgur.com/xfj4S3t.png 00A.png
32+
https://i.imgur.com/m3Ovx4w.png 002.png
33+
https://i.imgur.com/khIQh7P.png 003.png
34+
https://i.imgur.com/zgm1WsY.png 000.png
35+
https://i.imgur.com/0mXpoJT.png 00B.png
36+
https://i.imgur.com/VWdzeX0.png 005.png
37+
https://i.imgur.com/ZyXrE6a.png 00D.png
38+
https://i.imgur.com/aRxTu8Y.gif 001.gif
39+
https://i.imgur.com/opfuGa1.gif 004.gif
40+
https://i.imgur.com/a4q4Hoc.gif 002.gif
41+
https://i.imgur.com/xcQMpKc.gif 000.gif

0 commit comments

Comments
 (0)
Please sign in to comment.