mediawiki-extensions-Discus.../DiscussionTools.magic.php
Ed Sanders 92f5cfd821 Support suppressing comment detection in pages or sections
This can be done within sections using CSS:
* mw-notalk

Or at a page level using a magic word:
* __NOTALK__

"notalk" suppresses all comment detection, treating the content as
not containing any comments even if there are signatures present.

Bug: T295553
Bug: T249293
Change-Id: Ic1d7294bafcf7071e16838e70684ecadd7bc6fd3
2023-04-03 18:36:34 +02:00

9 lines
155 B
PHP

<?php
$magicWords = [];
/** English (English) */
$magicWords['en'] = [
'archivedtalk' => [ 0, '__ARCHIVEDTALK__' ],
'notalk' => [ 0, '__NOTALK__' ],
];