Really? Looking at announcement.vm they seem identical.
> On Nov 23, 2017, at 16:59, Ralph Goers <ralph.go...@dslextreme.com> 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 <remko.po...@gmail.com> 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 links >> in a text file: >> >> sed -i -e 's/\[\([^\]*\)\](\([^)]*\))/<a href="\2">\1<\/a>/g' >> RELEASE-NOTES.md >> >> Tricky points were that sed does not recognize the non-greedy qualifier, so >> you need to do [^x]* to match _up to_ the next `x`. >> Also round brackets are taken literally and capturing group brackets need >> to be escaped (the opposite from what I expected). > >