adjust spacing to be easier to read from curl output

This commit is contained in:
AJ ONeal 2020-04-26 17:31:25 -06:00
parent 7375a550eb
commit 16251a99b9
1 changed files with 4 additions and 7 deletions

View File

@ -63,13 +63,10 @@ module.exports = function (opts) {
;
var metaRedirect = ''
+ '<html>\n'
+ '<head>\n'
//+ ' <style>* { background-color: white; color: white; text-decoration: none; }</style>\n'
+ ' <META http-equiv="refresh" content="0;URL=\'' + escapedLocation + '\'">\n'
+ '</head>\n'
+ '<body>\n' + body + '\n</body>\n'
+ '</html>\n'
+ '<html>'
+ '\n<head><META http-equiv="refresh" content="0;URL=\'' + escapedLocation + '\'"></head>'
+ '\n<body>' + body + '</body>'
+ '\n</html>\n'
;
var pathMatch;