aboutsummaryrefslogtreecommitdiff
path: root/guidelines/wikipedia/pseudoIndent.js
diff options
context:
space:
mode:
Diffstat (limited to 'guidelines/wikipedia/pseudoIndent.js')
-rw-r--r--guidelines/wikipedia/pseudoIndent.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/guidelines/wikipedia/pseudoIndent.js b/guidelines/wikipedia/pseudoIndent.js
new file mode 100644
index 0000000..73b1700
--- /dev/null
+++ b/guidelines/wikipedia/pseudoIndent.js
@@ -0,0 +1,10 @@
+exports.name = "Do not use colon markup for indentation";
+exports.description = "Preceding text with a colon (:) in wiki markup causes that text to appear to be indented; but the actual result is a definition list with one item without a title.";
+
+exports.rule = function(report) {
+ $5('#mw-content-text dl:not(:has(dt)) dd').each(function(i, dd) {
+ var text = $.trim($(dd).text());
+ report.error('Colon markup used to indent text: '+ text, dd);
+ });
+};
+