fix image format for POD

Some POD parsers recognize only lowercase format names.

For e.g., pod2markdown fails to generate a markdown file with the status image if the format is 'HTML'
This commit is contained in:
Mithun Ayachit 2016-04-05 06:31:17 -05:00
parent cbd0c46e37
commit 703cdbd598

View File

@ -27,7 +27,7 @@ rstStatusImage = (function(url, slug, branch) {
});
podStatusImage = (function(url, slug, branch) {
return "=for HTML <a href=\"" + url + "\"><img src=\"" + (statusImageUrl(slug, branch)) + "\"></a>";
return "=for html <a href=\"" + url + "\"><img src=\"" + (statusImageUrl(slug, branch)) + "\"></a>";
});
ccxmlStatusUrl = (function(slug, branch) {