We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4efbf4b commit b5cb300Copy full SHA for b5cb300
lib/services/markupService.js
@@ -4,6 +4,10 @@ const httpService = require('./httpService');
4
5
module.exports = {
6
get(url) {
7
- return httpService.get(url);
+ return httpService.get(url, {
8
+ headers: {
9
+ Accept: 'text/html',
10
+ }
11
+ });
12
}
13
};
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "valimate",
3
- "version": "3.0.1",
+ "version": "3.0.2",
"description": "Automated HTML validation tool",
"repository": "https://github.com/jamesseanwright/valimate",
"bin": {
0 commit comments