Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Markdown image links be generated using POD6?

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?

like image 431
Kaiepi Avatar asked Sep 20 '19 08:09

Kaiepi


1 Answers

You can place the Markdown link directly in the Pod and Pod::To::Markdown will leave it as is for the Pod to Markdown conversion.

like image 152
Luis F. Uceta Avatar answered Oct 24 '22 23:10

Luis F. Uceta