Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 1.12 KB

Hilfe_Bearbeiten.md

File metadata and controls

66 lines (45 loc) · 1.12 KB

Kapitel

Kapitel lassen sich mit = realisieren:

=1. Kapitel= ==1.1. Kapitel== ===1.1.1. Kapitel===

Aufzählungen

Aufzählungen werden mit einem * erreicht:

  • 1. Punkt
  • 2. Punkt
  • 3. Punkt
  • 4. Punkt

Code-Formatierung

PHP Code

Erreichbar durch <source lang="php"></source>

<?php $foo = $bar; ?>

HTML Code

Erreichbar durch <source lang="html4strict"></source>

<head>
  <title>Schöne Seite</title>
</head>

CSS Code

Erreichbar durch <source lang="css"></source>

p {
  font: italic small-caps bold 1em/1.5em verdana, sans-serif;
}

Ini Code - Config

Erreichbar durch <source lang="ini"></source>

[Config]
item = "value"

SQL Code

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;