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:
parent
cbd0c46e37
commit
703cdbd598
|
@ -27,7 +27,7 @@ rstStatusImage = (function(url, slug, branch) {
|
||||||
});
|
});
|
||||||
|
|
||||||
podStatusImage = (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) {
|
ccxmlStatusUrl = (function(slug, branch) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user