From 703cdbd59826a78c3690a49b3846fc7b899ea122 Mon Sep 17 00:00:00 2001 From: Mithun Ayachit Date: Tue, 5 Apr 2016 06:31:17 -0500 Subject: [PATCH] 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' --- app/utils/status-image-formats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/status-image-formats.js b/app/utils/status-image-formats.js index 4e6e1afc..7d341905 100644 --- a/app/utils/status-image-formats.js +++ b/app/utils/status-image-formats.js @@ -27,7 +27,7 @@ rstStatusImage = (function(url, slug, branch) { }); podStatusImage = (function(url, slug, branch) { - return "=for HTML "; + return "=for html "; }); ccxmlStatusUrl = (function(slug, branch) {