Skip to content

Commit f75ad9f

Browse files
Add simple script that fixes some formatting problems
Signed-off-by: David A. Wheeler <[email protected]>
1 parent 28ae6d7 commit f75ad9f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

fixer

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env perl
2+
3+
# This is a short script that tries to auttomatically fix some
4+
# formatting errors.
5+
6+
while (<>) {
7+
# Fix badly-bolded links
8+
s/\*\[([^\*\]]+)\*(.)\]\(/\[\*\1\2*\]\(/g;
9+
# Fix URL with __ inside
10+
s/__blob=/\&#95;\&#95;blob=/g;
11+
print;
12+
}

0 commit comments

Comments
 (0)