wiki2xhtml.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3. - This file is part of DotClear.
  4. - Copyright (c) 2004 Olivier Meunier and contributors. All rights
  5. - reserved.
  6. -
  7. - DotClear is free software; you can redistribute it and/or modify
  8. - it under the terms of the GNU General Public License as published by
  9. - the Free Software Foundation; either version 2 of the License, or
  10. - (at your option) any later version.
  11. -
  12. - DotClear is distributed in the hope that it will be useful,
  13. - but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. - GNU General Public License for more details.
  16. -
  17. - You should have received a copy of the GNU General Public License
  18. - along with DotClear; if not, write to the Free Software
  19. - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. -
  21. - ***** END LICENSE BLOCK ***** -->
  22. <html>
  23. <head>
  24. <title>Syntaxe Wiki</title>
  25. </head>
  26. <body>
  27. <h1>Syntaxe Wiki</h1>
  28. <p>Les marques de formatage Wiki peuvent être insérées dans le texte en les
  29. protégeant par le caractère "<code>\</code>".</p>
  30. <h2>Blocs</h2>
  31. <ul>
  32. <li>Laisser une ligne vide entre chaque bloc <em>de même nature</em>.&nbsp;;</li>
  33. <li><strong>Paragraphe</strong> : du texte et une ligne vide&nbsp;;</li>
  34. <li><strong>Titre</strong> : <code>!!!</code>, <code>!!</code>, <code>!</code>
  35. pour des titres plus ou moins importants&nbsp;;</li>
  36. <li><strong>Trait horizontal</strong> : <code>----</code>&nbsp;;</li>
  37. <li><strong>Liste</strong> : ligne débutant par <code>*</code> ou
  38. <code>#</code>. Il est possible de mélanger les listes (<code>*#*</code>) pour
  39. faire des listes de plusieurs niveaux. Respecter le style de chaque
  40. niveau&nbsp;;</li>
  41. <li><strong>Texte préformaté</strong> : espace devant chaque ligne de
  42. texte&nbsp;;</li>
  43. <li><strong>Bloc de citation</strong> : <code>&gt;</code> ou <code>;:</code>
  44. devant chaque ligne de texte.</li>
  45. </ul>
  46. <h2>Éléments en ligne</h2>
  47. <ul>
  48. <li>La correction de ponctuation est active. Un espace insécable
  49. remplacera automatiquement tout espace précédant les marques
  50. ";","?",":" et "!".&nbsp;;</li>
  51. <li><strong>Emphase</strong> : deux apostrophes
  52. <code>''texte''</code>&nbsp;;</li>
  53. <li><strong>Forte emphase</strong> : deux soulignés
  54. <code>__texte__</code>&nbsp;;</li>
  55. <li><strong>Retour forcé à la ligne</strong> :
  56. <code>%%%</code>&nbsp;;</li>
  57. <li><strong>Insertion</strong> : deux plus
  58. <code>++texte++</code>&nbsp;;</li>
  59. <li><strong>Suppression</strong> : deux moins
  60. <code>--texte--</code>&nbsp;;</li>
  61. <li><strong>Lien</strong> : <code>[url]</code>, <code>[nom|url]</code>,
  62. <code>[nom|url|langue]</code> ou
  63. <code>[nom|url|langue|titre]</code>.
  64. <br /><em>Si vous voulez insérer un lien vers une ancre dans la même page,
  65. remplacez url par #nom-de-votre-ancre</em>&nbsp;;</li>
  66. <li><strong>Image</strong> :
  67. <code>((url|texte alternatif))</code>,
  68. <code>((url|texte alternatif|position))</code> ou
  69. <code>((url|texte alternatif|position|description longue))</code>.
  70. <br />La position peut prendre les valeur L ou G (gauche), R ou D (droite)
  71. ou C (centré).&nbsp;;</li>
  72. <li><strong>Ancre</strong> : <code>~ancre~</code>&nbsp;;</li>
  73. <li><strong>Acronyme</strong> : <code>??acronyme??</code> ou
  74. <code>??acronyme|titre??</code>&nbsp;;</li>
  75. <li><strong>Citation</strong> : <code>{{citation}}</code>,
  76. <code>{{citation|langue}}</code> ou
  77. <code>{{citation|langue|url}}</code>&nbsp;;</li>
  78. <li><strong>Code</strong> : <code>@@code ici@@</code>&nbsp;;</li>
  79. <li><strong>Note de bas de page</strong> : <code>$$Corps de la
  80. note$$</code>.</li>
  81. </ul>
  82. </body>
  83. </html>