La directive meta est fournie par le module d'extension meta.

Cette directive permet l'insertion de métadonnées quelconques dans la source d'une page. Voici comment procéder :

[[!meta  field="valeur"]]
[[!meta  field="valeur" param="valeur" param="valeur"]]

The first form sets a given field to a given value, while the second form also specifies some additional sub-parameters. You can have only one field per meta directive, use more directives if you want to specify more fields.

La valeur d'un champ est traitée comme du texte codé en HTML. Vous pouvez inclure un guillemet en écrivant " par exemple.

Supported fields

  • title

    La valeur de ce champ remplace le titre d'une page, qui est en général le nom de la page.

    Si le titre est remplacé, une variable « title_overridden » est définie avec une valeur true dans le modèle de page. On peut se servir de cette variable pour formater le texte différemment.

    An optional sortas parameter will be used preferentially when sorting by meta(title):

    [[!meta title="The Beatles" sortas="Beatles, The"]]

    [[!meta title="David Bowie" sortas="Bowie, David"]]

  • license

    Indique la license de la page, par exemple « GPL ». Peut contenir des WikiLinks et des balises quelconques.

  • copyright

    Indique le copyright de la page, par exemple « Copyright 2007 by Joey Hess ». Peut contenir des WikiLinks et des balises quelconques.

  • author

    L'auteur de la page.

    An optional sortas parameter will be used preferentially when sorting by meta(author):

    [[!meta author="Joey Hess" sortas="Hess, Joey"]]

  • authorurl

    Indique une URL pour l'auteur de la page.

  • description

    Donne une courte description de la page qui sera placée dans l'en-tête html et qui peut être affichée par la directive map.

  • keywords

    Specifies keywords summarizing the contents of the page. This information will be put in the html header. Only letters, numbers, spaces and commas are allowed in this string; other characters are stripped. Note that the majority of search engines, including Google, do not use information from the keywords header.

  • permalink

    Indique un lien permanent vers la page, si différent de la page créée par ikiwiki.

  • date

    Specifies the creation date of the page. This creates a <meta name="date" content="..."> header in the HTML output, but also modifies the internal ctime in the internal index. The date can be entered in nearly any format, since it's parsed by TimeDate but invalid dates yield an error in 3.20180321 or later.

  • stylesheet

    Ajoute une feuille de style à la page. La feuille de style est traitée comme un lien wiki vers un fichier .css dans le wiki. On ne peut donc pas ajouter de liens vers des feuilles de style externes. Par exemple :

    [[!meta stylesheet=somestyle rel="alternate stylesheet" title="somestyle"]]

    However, this will be scrubbed away if the htmlscrubber plugin is enabled, since it can be used to insert unsafe content.

  • script

    Adds a script to a page. The script is treated as a wiki link to a .js file in the wiki, so it cannot be used to add links to external scripts. The optional defer and async keywords can be used to set the corresponding HTML4 and HTML5 script options. Example:

    [[!meta script=somescript defer async]]

    The tag is subject to scrubbing as with the stylesheet and link fields.

  • openid

    Ajoute des balises HTML <link> pour réaliser une délégation OpenID à un serveur OpenID externe. Cela permet d'utiliser une page de wiki comme votre identifiant OpenID.

    Par défaut la délégation se fera pour openid et openid2. Pour n'en choisir qu'un, ajoutez par exemple ce paramètre : delegate=openid.

    Un paramètre facultatif xrds-location permet d'indiquer l'adresse de tout eXtensible Resource DescriptorS.

    Exemple :

    [[!meta openid="http://joeyh.myopenid.com/" server="http://www.myopenid.com/server" xrds-location="http://www.myopenid.com/xrds?username=joeyh.myopenid.com"]]

  • link

    Indique un lien vers une autre page. C'est une façon de lier deux pages sans afficher un WikiLink qui serait visible par l'utilisateur :

     [[!meta  link=otherpage]]
    

    On peut aussi s'en servir pour insérer une balise HTML <link>. Par exemple :

     [[!meta  link="http://joeyh.myopenid.com/" rel="openid.delegate"]]
    

    Cependant cette expression ne sera pas permise si le greffon htmlscrubber est activé, car il permet d'insérer des contenus non sécurisés.

  • enclosure

    Specifies a link to a file to be rendered as an "enclosure" in RSS/Atom feeds (and a plain old link in HTML). Useful for podcasting.

  • redir

    Rend possible la redirection d'une page vers une autre dans le wiki.

    [[!meta redir=otherpage]]

    The default is to redirect without delay. Optionally, a delay (in seconds) can be specified: "delay=10"

    Une redirection vers une URL externe est aussi possible. Par exemple :

    [[!meta redir="http://example.com/"]]

    Cependant cette expression ne sera pas permise si le greffon htmlscrubber est activé, car il permet d'insérer des contenus non sécurisés.

    Dans les deux cas, on peut indiquer une ancre à l'intérieur de la page visée, avec la syntaxe habituelle #ANCHOR.

  • robots

    Permet l'écriture de l'étiquette robots :

      [[!meta  robots="index, nofollow"]]
    

    L'attribut peut prendre les valeurs suivantes : "index", "noindex", "follow" et "nofollow". On peut indiquer plusieurs valeurs, séparées par une virgule. Seules quelques combinaisons cependant ont du sens. Si l'étiquette robots n'existe pas, "index, follow" est utilisée par défaut.

    La valeur est protégée mais son contenu n'est pas vérifié.

  • guid

    Specifies a globally unique ID for a page. This guid should be a URI, and it will be used to identify the page's entry in RSS and Atom feeds. If not given, the default is to use the page's URL as its guid.

    This is mostly useful when a page has moved, to keep the guids for pages unchanged and avoid flooding aggregators (see tips/howto avoid flooding aggregators).

  • updated

    Specifies a fake modification time for a page, to be output into RSS and Atom feeds. This is useful to avoid flooding aggregators that sort by modification time, like Planet: for instance, when editing an old blog post to add tags, you could set updated to be one second later than the original value. The date/time can be given in any format that TimeDate can understand, just like the date field and maps to the <meta name="updated" content="..."> HTML header and internal mtime field.

  • foaf

    Adds a Friend of a Friend (FOAF) reference to a page.

    Exemple :

    [[!meta foaf=foaf.rdf]]

  • name

    Adds a HTML <meta> header with this name attribute. Its other attributes are taken from the other parameters, so for example [[!meta name="foo" content="bar" x-non-standard-attribute="baz"]] becomes <meta name="foo" content="bar" x-non-standard-attribute="baz">. This won't be allowed if the htmlscrubber plugin is enabled, since it can be used to insert unsafe content.

Other fields

If the field is not one of the above predefined fields, the metadata will be written to the generated html page as a <meta> header. For example, [[!meta foo="bar"]] becomes <meta name="foo" content="bar">. As with name, this won't be allowed if the htmlscrubber plugin is enabled.

This syntax cannot be used for meta headers with unusual names, in particular names containing : such as flattr:id and twitter:card. Please use [[!meta name="..." content="..."]] for those headers.