Skip to content

Commit ea8906e

Browse files
committed
Link to files in the README.
1 parent 760647d commit ea8906e

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pathadd <python-scripts>/python3
2525

2626
# Script Descriptions
2727

28-
## generate-readme.py
28+
## [generate-readme.py](https://github.com/bamos/python-scripts/blob/master/generate-readme.py)
2929
+ Authors: Brandon Amos <http://github.com/bamos>
3030
+ Created: 2015.03.27
3131

@@ -36,7 +36,7 @@ Script descriptions are obtained by parsing the docstrings.
3636

3737

3838

39-
## python2.7/music-organizer.py
39+
## [python2.7/music-organizer.py](https://github.com/bamos/python-scripts/blob/master/python2.7/music-organizer.py)
4040
+ Authors: [Brandon Amos](https://github.com/bamos)
4141
+ Created: 2014.04.19
4242

@@ -48,7 +48,7 @@ are lower case strings separated by dashes.
4848

4949

5050

51-
## python2.7/mt.py
51+
## [python2.7/mt.py](https://github.com/bamos/python-scripts/blob/master/python2.7/mt.py)
5252
+ Authors: [Brandon Amos](https://github.com/bamos)
5353
+ Created: 2014.11.30
5454

@@ -60,7 +60,7 @@ of the output.
6060

6161

6262

63-
## python3/github-repo-summary.py
63+
## [python3/github-repo-summary.py](https://github.com/bamos/python-scripts/blob/master/python3/github-repo-summary.py)
6464
+ Authors: [Brandon Amos](https://github.com/bamos)
6565
+ Created: 2014.11.02
6666

@@ -69,7 +69,7 @@ Produces a Markdown table concisely summarizing a list of GitHub repositories.
6969

7070

7171

72-
## python3/link-checker.py
72+
## [python3/link-checker.py](https://github.com/bamos/python-scripts/blob/master/python3/link-checker.py)
7373
+ Authors: [Brandon Amos](https://github.com/bamos)
7474
+ Created: 2014.02.06
7575

@@ -83,7 +83,7 @@ to hide warnings and to send a concise email if bad links are found.
8383

8484

8585

86-
## python3/phonetic.py
86+
## [python3/phonetic.py](https://github.com/bamos/python-scripts/blob/master/python3/phonetic.py)
8787
+ Authors: [Brandon Amos](https://github.com/bamos)
8888
+ Created: 2014.02.14
8989

@@ -102,7 +102,7 @@ b - bravo
102102

103103

104104

105-
## python3/rank-writing.py
105+
## [python3/rank-writing.py](https://github.com/bamos/python-scripts/blob/master/python3/rank-writing.py)
106106
+ Authors: [Brandon Amos](https://github.com/bamos)
107107
+ Created: 2014.02.14
108108

@@ -136,7 +136,7 @@ Total: 0
136136

137137

138138

139-
## python3/get-osx-wallpaper.py
139+
## [python3/get-osx-wallpaper.py](https://github.com/bamos/python-scripts/blob/master/python3/get-osx-wallpaper.py)
140140
+ Authors: [Brandon Amos](https://github.com/bamos)
141141
+ Created: 2015.03.25
142142

@@ -181,7 +181,7 @@ https://github.com/bamos/dotfiles/blob/master/.aliases:
181181

182182

183183

184-
## python3/merge-pdfs-printable.py
184+
## [python3/merge-pdfs-printable.py](https://github.com/bamos/python-scripts/blob/master/python3/merge-pdfs-printable.py)
185185
+ Authors: [Brandon Amos](https://github.com/bamos)
186186
+ Created: 2014.10.17
187187

@@ -216,7 +216,7 @@ PS file.
216216

217217

218218

219-
## python3/word-counter.py
219+
## [python3/word-counter.py](https://github.com/bamos/python-scripts/blob/master/python3/word-counter.py)
220220
+ Authors: [Brandon Amos](https://github.com/bamos)
221221
+ Created: 2014.11.7
222222

@@ -247,7 +247,7 @@ $ word-counter.py shakespeare.md --numWords 4 --maxTuples 3
247247

248248

249249

250-
## python3/eval-expr.py
250+
## [python3/eval-expr.py](https://github.com/bamos/python-scripts/blob/master/python3/eval-expr.py)
251251
+ Authors: J. Sebastian, [Brandon Amos](https://github.com/bamos)
252252
+ Created: 2013.08.01
253253

@@ -268,7 +268,7 @@ $ eval-expr.py '(((4+6)*10)<<2)'
268268

269269

270270

271-
## python3/merge-mutt-contacts.py
271+
## [python3/merge-mutt-contacts.py](https://github.com/bamos/python-scripts/blob/master/python3/merge-mutt-contacts.py)
272272
+ Authors: [Brandon Amos](https://github.com/bamos)
273273
+ Created: 2014.01.08
274274

generate-readme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ def get_docstr(filename):
6262
print(" + Error reading (author,date,desc).")
6363
raise
6464
return """
65-
## {}
65+
## [{}](https://github.com/bamos/python-scripts/blob/master/{})
6666
+ Authors: {}
6767
+ Created: {}
6868
6969
{}
70-
""".format(filename, ", ".join(authors), date, desc)
70+
""".format(filename, filename, ", ".join(authors), date, desc)
7171

7272
def get_descriptions():
7373
print("# Getting project descriptions")

0 commit comments

Comments
 (0)