cMadan / openMorph

Curated list of open-access databases with human structural MRI data
126 stars 37 forks source link

fix #9 #10

Closed composition4 closed 6 years ago

composition4 commented 6 years ago

Please review for any errors: I ran this through sed with a regular expression so it might not have worked 100% as desired. My (admittedly skim) review of results appeared correct.

for future reference, I ran:

sed -i 's/\[\([0-1]\{2,\}\.[0-9]*\/.*\)\]/[\1](https\:\/\/dx.doi.org\/\1)/' README.md
cMadan commented 6 years ago

I decided I'd like to keep the square brackets around the DOI, so I adjusted the sed command so that it would make it a URL but also keep those.

sed -i 's/\[\([0-1]\{2,\}\.[0-9]*\/.*\)\]/\[[\1](https\:\/\/dx.doi.org\/\1)\]/' README.md

Thanks so much for making this fix!

KirstieJane commented 6 years ago

Yaaaay! Particularly awesome to share the sed command @composition4. Glad it could be used easily.

Thanks again @cMadan for the kickass resource!