UNPKG

htmllint

Version:
14 lines (11 loc) 344 B
var Issue = require('../issue'); module.exports = { name: 'title-no-dup', on: ['title'], desc: 'If set, the `<title>` tag must not appear twice in the head.' }; module.exports.lint = function (titles, opts) { return titles.length <= 1 ? [] : new Issue('E028', titles[1].openLineCol, { num: titles.length }); }