Make image paths absolute
Created by: seancolsen
Close #286
Done with the following script from @aydun
cd docs
find . -name \*.md | xargs perl -pi -e 's/(\!.*)\.\.(\/img\/.*\.(png|jpg|gif))/$1$2/i;'
Merge request reports
Activity
Filter activity
Created by: seancolsen
Merging this without review because:
- It's essentially a way of rebasing #286 (I just re-ran the script instead of resolving conflicts)
- I want to get this into master soon to avoid more conflicts.
- I spot-checked the results. Looks good.
- @aydun has already looked at the results of this scipt
One thing to note though is that I did change
png
to(png|jpg|gif)
in order to catch all images.
Please register or sign in to reply