We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e772f7a commit fc80097Copy full SHA for fc80097
docs/build.js
@@ -5,7 +5,7 @@ const marked = require('marked');
5
6
function media(dir){
7
const files = fs.readdirSync(dir);
8
- return files.filter(file => path.extname(file).toLowerCase() === '.gif').map(file => path.join(dir, file));
+ return files.filter(file => path.extname(file).toLowerCase() === '.gif' || path.extname(file).toLowerCase() === '.png' ).map(file => path.join(dir, file));
9
}
10
11
function* findReadmes(dir) {
0 commit comments