Extension:Sarcasm
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
Implementation | Tag , Skin |
Description | Adds sarcasm tags to the wiki that can be used for indicating text as sarcastic |
Author(s) | (Inquisitor Ehrensteintalk) |
Latest version | 1.0 (2013-02-02) |
MediaWiki | >= 1.29.0 |
License | GNU General Public License 2.0 or later |
Download | |
<sarcasm></sarcasm> |
|
Quarterly downloads | 0 |
Translate the Sarcasm extension if it is available at translatewiki.net | |
The Sarcasm extension implements parsing for the <sarcasm>
tags indicate when text is intended to be sarcastic. The goal is to make sarcasm through text more identifiable, which is often problematic due to the lack of non verbal communication that would normally indicate sarcasm that can result in action taken against users for incivility because their actions were misinterpreted. This extension will also hopefully facilitate wiki communities and good humor by encouraging jokes and sarcasm.
Installation[edit]
- Download and place the file(s) in a directory called
Sarcasm
in yourextensions/
folder. - Add the following code at the bottom of your
LocalSettings.php
:require_once "$IP/extensions/Sarcasm/Sarcasm.php";
- Configure the CSS class .sarcasm in MediaWiki:Common.css
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Define style[edit]
You can customize the way that sarcasm tags affect text by styling the .sarcasm
selector in the CSS pages on your wiki.
For example, add the following to your MediaWiki:Common.css to color them gray:
.sarcasm {
color: #A4A4A4;
}