8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
perl -i -pe '
|
|
s{\[([^]]+)\]\((?!<)([^)]+)\)}{[$1](<$2>)}g;
|
|
s{!\[([^]]*)\]\((?!<)([^)]+)\)}{}g;
|
|
s/%20/ /g;
|
|
' docs/src/*.md
|