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
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
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
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