Ci-dessous, les différences entre deux révisions de la page.
| apercu-du-template [2025/10/26 10:57] – créée fabien | apercu-du-template [2025/10/26 10:58] (Version actuelle) – supprimée fabien | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ~~NOCACHE~~ | ||
| - | |||
| - | ====== Aperçu du template ====== | ||
| - | |||
| - | [[doku> | ||
| - | |||
| - | ===== Basic Text Formatting ===== | ||
| - | |||
| - | DokuWiki supports **bold**, //italic//, __underlined__ and '' | ||
| - | |||
| - | You can use < | ||
| - | |||
| - | You can mark something as < | ||
| - | |||
| - | ===== Sectioning ===== | ||
| - | |||
| - | ==== Headline Level 3 ==== | ||
| - | === Headline Level 4 === | ||
| - | == Headline Level 5 == | ||
| - | |||
| - | ==== Headline Level 3 ==== | ||
| - | === Headline Level 4 === | ||
| - | == Headline Level 5 == | ||
| - | |||
| - | By using four or more dashes, you can make a horizontal line: | ||
| - | |||
| - | ---- | ||
| - | |||
| - | ===== Lists ===== | ||
| - | |||
| - | * This is a list | ||
| - | * The second item | ||
| - | * You may have different levels | ||
| - | * Another item | ||
| - | |||
| - | - The same list but ordered | ||
| - | - Another item | ||
| - | - Just use indention for deeper levels | ||
| - | - That's it | ||
| - | |||
| - | ===== Quoting ===== | ||
| - | |||
| - | I think we should do it | ||
| - | |||
| - | > No we shouldn' | ||
| - | |||
| - | >> Well, I say we should | ||
| - | |||
| - | > Really? | ||
| - | |||
| - | >> Yes! | ||
| - | |||
| - | >>> | ||
| - | |||
| - | ===== Tables ===== | ||
| - | |||
| - | DokuWiki supports a simple syntax to create tables. | ||
| - | |||
| - | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | ||
| - | | Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | | ||
| - | | Row 2 Col 1 | some colspan (note the double pipe) || | ||
| - | | Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | | ||
| - | |||
| - | |||
| - | | ^ Heading 1 ^ Heading 2 ^ | ||
| - | ^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 | | ||
| - | ^ Heading 4 | no colspan this time | | | ||
| - | ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | | ||
| - | |||
| - | ===== Code Blocks ===== | ||
| - | |||
| - | This is text is indented by two spaces. | ||
| - | |||
| - | < | ||
| - | This is preformatted code all spaces are preserved: like <-this | ||
| - | </ | ||
| - | |||
| - | < | ||
| - | This is pretty much the same, but you could use it to show that you quoted a file. | ||
| - | </ | ||
| - | |||
| - | ==== Syntax Highlighting ==== | ||
| - | |||
| - | <code java> | ||
| - | /** | ||
| - | * The HelloWorldApp class implements an application that | ||
| - | * simply displays "Hello World!" | ||
| - | */ | ||
| - | class HelloWorldApp { | ||
| - | public static void main(String[] args) { | ||
| - | System.out.println(" | ||
| - | } | ||
| - | } | ||
| - | </ | ||