Extension:Description2
Description2 Stav rozšíření: stabilní |
|
---|---|
Implementace | Extrakce dat, Rozšíření syntaktického analyzátoru |
Popis | Provides a meta description tag and adds data to parser output for other extensions to use. |
Autoři | Daniel Friesen (Dantmandiskuse) |
Nejnovější verze | 0.4.1 |
Zásady kompatibility | Větev master zachovává zpětnou kompatibilitu. |
MediaWiki | >= 1.38.0 |
Změny v databázi | Ne |
Licence | GNU General Public License 2.0 nebo novější |
Stáhnout | |
|
|
Čtvrtletní stahování | 46 (Ranked 86th) |
Přeložte rozšíření Description2, používá-li lokalizaci z translatewiki.net | |
The Description2 extension adds a description meta tag for articles automatically based on the content. This functionality appears to have been removed from MediaWiki at some point. There are some situations where description extraction (by entities less sophisticated than Google, like Facebook) will extract the wrong description information from the wiki and use something like the sitenotice as the description for a page instead of its content. This extension also adds the description to the parser output in a way that other extensions can make use of (to say provide description in a different format like Extension:OpenGraphMeta does, or perhaps to use it in article lists on the wiki).
Installation
- Stáhněte soubor/y a vložte je do adresáře pojmenovaného
Description2
ve vaší složceextensions/
.
Vývojáři a přispěvatelé kódu by si místo toho měli nainstalovat rozšíření from Git pomocí:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Description2 - Na konec vašeho souboru LocalSettings.php přidejte následující kód:
wfLoadExtension( 'Description2' ); $wgEnableMetaDescriptionFunctions = true;
- Dokončeno – Přejděte na stránku Special:Version vaší wiki a zkontrolujte, zda bylo rozšíření úspěšně nainstalováno.
Extra options
If you set $wgEnableMetaDescriptionFunctions = true;
in your LocalSettings.php a {{#description2:}}
parser function can be used to control the description outputted for the page and override it with a custom one.
You can use these parser extensions like so:
{{#description2:This is a description}}
You can use the description2 parser function instead to provide a description tag you can control with a template's variables.
Algorithm
Description is extracted from the HTML representation of a page:
- Remove all
<table>
elements (and its contents). - Find all
<p>
elements. - Iterate over those paragraphs, stripping out all HTML tags (see strip_tags()) and trimming whitespace around it.
- The first non-empty paragraph (after all previous transformation) is picked as the description.
Things to consider:
- When using templates at the top of the articles, if you use
<div>
instead of tables for the template, be sure it doesn't render paragraphs, which otherwise will be used as the description. This may happen if you have several<div>
inside the template with newlines.
See also
- Extension:OpenGraphMeta – uses Description2's description information when installed.
- Extension:MetaDescriptionTag
- Extension:Semantic Meta Tags
Toto rozšíření je zahrnuto v následujících wiki farmách/hostitelích a/nebo balíčcích: Toto není autoritativní seznam. Některé wiki farmy/hostitelé a/nebo balíčky mohou toto rozšíření obsahovat, i když zde nejsou uvedeny. Pro potvrzení se vždy obraťte na své wiki farmy/hostitele nebo balíček. |
- Stable extensions/cs
- Data extraction extensions/cs
- Parser extensions/cs
- GPL licensed extensions/cs
- Extensions in Wikimedia version control/cs
- OutputPageParserOutput extensions/cs
- ParserAfterTidy extensions/cs
- ParserFirstCallInit extensions/cs
- All extensions/cs
- Extensions included in Canasta/cs
- Extensions included in Miraheze/cs
- Extensions included in wiki.gg/cs
- Extensions included in WikiForge/cs
- HTML head extensions/cs
- Search engine optimization extensions/cs