• Balises HTML autorisées: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <u> <img> <strike> <blockquote>

  • Les lignes et les paragraphes sont reconnus automatiquement. Les balises <br /> saut de ligne, <p> paragraphe et </p> fin de paragraphe sont insérées automatiquement.Si les paragraphes ne sont pas reconnus ajoutez simplement quelques lignes vides.
  • Si vous avez utilisé un émoticon sous forme de signes de ponctuation dans votre texte (cf ci-dessous), celui-ci sera automatiquement remplacé par un émoticon image.
    Emoticons
    SmileyAcronyms
    :davie::davie:
    :crown::crown:
    J)J) J-) :crazy:
    8)8) 8-) :cool:
    $)$) $-) :cash:
    :bigsmile::bigsmile:
    :beer::beer:
    :(:( :-( :sad:
    :arrow::arrow:
    |(|( \\( :angry:
    :):) :-) :smile:
    S)S) S) :drunk:
    >)&gt;) &gt;-) :evil:
    :|:| :-| :stare:
    :ghost::ghost:
    :glasses::glasses:
    H)H) H:) H:-) :grade:
    :hat::hat:
    0:)0:) 0) 0:-) :innocent:
    :D:D :-D :lol:
    :love::love:
    :mail::mail:
    :exmark::exmark:
    :X:X :-X :oups:
    :party::party:
    :~:~ :-~ :puzzled:
    :quest::quest:
    :((:(( :-(( :cry:
    :santa::santa:
    :*:* :-* :sexy:
    :O:O :-O :shock:
    :8):8) :8-) :shy:
    :Sp:Sp :-S) :sick:
    :star::star:
    :steve::steve:
    :sushi::sushi:
    :tired::tired:
    :p:p :-p :tongue:
    ;);) ;-) :wink:
  • Les adresses de pages web et de messagerie électronique sont transformées en liens automatiquement.
  • Syntax highlighting of source code can be enabled with the following tags:

    • Generic syntax highlighting tags: "<code>", "<blockcode>".
    • Language specific syntax highlighting tags: "<as3>" for ActionScript 3 source code, "<bash>" for Bash source code, "<c>" for C source code, "<cpp>" for C++ source code, "<css>" for CSS source code, "<diff>" for Diff source code, "<drupal5>" for Drupal 5 source code, "<drupal6>" for Drupal 6 source code, "<ini>" for INI source code, "<java>" for Java source code, "<javascript>" for Javascript source code, "<mysql>" for MySQL source code, "<php>" for PHP source code, "<plsql>" for PL/SQL source code, "<python>" for Python source code, "<robots>" for robots.txt source code, "<ruby>" for Ruby source code, "<smarty>" for Smarty source code, "<vb>" for Visual Basic source code, "<xml>" for XML source code.

    Options and tips:

    • The language for the generic syntax highlighting tags can be specified with one of the attribute(s): type, lang, language. The possible values are: "actionscript3" (for ActionScript 3), "as3" (for ActionScript 3), "bash" (for Bash), "c" (for C), "cpp" (for C++), "css" (for CSS), "diff" (for Diff), "drupal5" (for Drupal 5), "drupal6" (for Drupal 6), "ini" (for INI), "java" (for Java), "javascript" (for Javascript), "mysql" (for MySQL), "php" (for PHP), "plsql" (for PL/SQL), "python" (for Python), "robots" (for robots.txt), "ruby" (for Ruby), "smarty" (for Smarty), "vb" (for Visual Basic), "xml" (for XML).
    • Line numbering can be enabled/disabled with the attribute "linenumbers". Possible values are: "off" for no line numbers, "normal" for normal line numbers and "fancy" for fancy line numbers (every nth line number highlighted). The start line number can be specified with the attribute "start", which implicitly enables normal line numbering. For fancy line numbering the interval for the highlighted line numbers can be specified with the attribute "fancy", which implicitly enables fancy line numbering.
    • If the source code between the tags contains a newline (e.g. immediatly after the opening tag), the highlighted source code will be displayed as a code block. Otherwise it will be displayed inline.
    • Beside the tag style "<foo>" it is also possible to use "[foo]".

    Defaults:

    • Default highlighting mode for generic syntax highlighting tags: the default language used for syntax highlighting is "php".
    • Default line numbering: fancy line numbers (every 5 lines).

    Examples:

    You typeYou get
    <code>foo = "bar";</code>Inline code with the default syntax highlighting mode.
    <code>
    foo = "bar";
    baz = "foz";
    </code>
    Code block with the default syntax highlighting mode.
    <code lang="drupal5" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Drupal 5 source code
    and normal line numbers.
    <code language="drupal5" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Drupal 5 source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
    <as3>
    foo = "bar";
    baz = "foz";
    </as3>
    Code block with syntax highlighting for ActionScript 3 source code.
    <as3 start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    <as3>
    Code block with syntax highlighting for ActionScript 3 source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
  • To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:

    <a href="image-1.jpg" rel="lightbox">image #1</a>

    <a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a>

    To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute.

    If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:

    <a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
    <a href="image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a>
    <a href="image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a>

    There are no limits to the number of image sets per page or how many images are allowed in each set.

    If you wish to turn the caption into a link, format your caption in the following way:

    <a href="image-1.jpg" rel='lightbox[][<a href="http://www.yourlink.com">View Image Details</a>]' >image #1</a>