aboutsummaryrefslogtreecommitdiff
path: root/guidelines/wikipedia/horizontalRule.js
blob: b16375dace351cc3b29f6cea2cada87f8c3cb11b (plain)
1
2
3
4
5
6
7
8
exports.name = "Horizontal rules are deprecated";
exports.description = "Horizontal rules (----) are deprecated.";

exports.rule = function(report) {
  $5('#mw-content-text hr').each(function(i, hr) {
    report.warning('Remove horizontal rule.', hr);
  });
};