Re: converting markdown links to html links

2017-11-23 Thread Ralph Goers
Those are. I am going to hand-edit the announcement. Ralph > On Nov 23, 2017, at 1:06 AM, Remko Popma wrote: > > Really? > Looking at announcement.vm they seem identical. > > > >> On Nov 23, 2017, at 16:59, Ralph Goers wrote: >> >> Thanks, although the announcement is going to contain a b

Re: converting markdown links to html links

2017-11-23 Thread Remko Popma
Really? Looking at announcement.vm they seem identical. > On Nov 23, 2017, at 16:59, Ralph Goers wrote: > > Thanks, although the announcement is going to contain a bit more text than is > in the release notes. > > Ralph > >> On Nov 23, 2017, at 12:06 AM, Remko Popma wrote: >> >> This too

Re: converting markdown links to html links

2017-11-22 Thread Ralph Goers
Thanks, although the announcement is going to contain a bit more text than is in the release notes. Ralph > On Nov 23, 2017, at 12:06 AM, Remko Popma wrote: > > This took me a while to get right, so let me share it. > > Below unix command can be used to replace the markdown links to HTML link

converting markdown links to html links

2017-11-22 Thread Remko Popma
This took me a while to get right, so let me share it. Below unix command can be used to replace the markdown links to HTML links in a text file: sed -i -e 's/\[\([^\]*\)\](\([^)]*\))/\1<\/a>/g' RELEASE-NOTES.md Tricky points were that sed does not recognize the non-greedy qualifier, so you need