This file ( 1kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const builder = require('corifeus-builder');
module.exports = (grunt) => {
const loader = new builder.Loader(grunt);
loader.js();
grunt.config.set('cory-replace', {
header: {
header: true,
replace: `
[](https://travis-ci.org/patrikx3/\${git.repo})
[](https://scrutinizer-ci.com/g/patrikx3/\${git.repo}/?branch=master)
[](https://scrutinizer-ci.com/g/patrikx3/\${git.repo}/?branch=master) [](https://trello.com/b/gqKHzZGy/p3x)
`,
files: [
'*.md'
]
},
footer: {
footer: true,
replace: `[by Patrik Laszlo](http://patrikx3.tk)`,
files: [
'*.md'
]
}
})
grunt.registerTask('default', builder.config.task.build.js);
}