Kapitel lassen sich mit = realisieren:
=1. Kapitel= ==1.1. Kapitel== ===1.1.1. Kapitel===
Aufzählungen werden mit einem * erreicht:
- 1. Punkt
- 2. Punkt
- 3. Punkt
- 4. Punkt
Erreichbar durch <source lang="php"></source>
<?php $foo = $bar; ?>
Erreichbar durch <source lang="html4strict"></source>
<head>
<title>Schöne Seite</title>
</head>
Erreichbar durch <source lang="css"></source>
p {
font: italic small-caps bold 1em/1.5em verdana, sans-serif;
}
Erreichbar durch <source lang="ini"></source>
[Config]
item = "value"
Erreichbar durch <source lang="sql"></source>
CREATE TABLE IF NOT EXISTS `test` (
`testID` INT(5) UNSIGNED NOT NULL auto_increment,
`CreationTimestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
`ModificationTimestamp` timestamp NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`testID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;