In all of my Raku packages, the README has a line at the top having Travis badge for the module, like this:
[![Build Status](https://travis-ci.org/Kaiepi/p6-Failable.svg?branch=master)](https://travis-ci.org/Kaiepi/p6-Failable)
At the moment, I am generating the README using POD6 in the main module, but I am manually copying the link to the Travis badge every time I do this. Is there some way to format the link with POD6 so I don't have to?
Pod::To::Markdown
, yes. – Ingramperl6 --doc=Markdown myPack.pm6 > README.md
, you should get the the link as is in yourREADME.md
as shown here. – Delanty