Eingabeformate:
  • Filtered HTML:
    • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
    • Mögliche HTML Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

      Diese Website erlaubt HTML-Inhalte. Obwohl das Erlernen aller HTML-Befehle abschreckend erscheint, ist es sehr einfach, nur eine kleine Anzahl der grundlegendsten HTML-„Tags“ zu lernen. Diese Tabelle enthält Beispiele für jedes Tag, das auf dieser Website erlaubt ist.

      Weitere Informationen zu HTML sind in SelfHTML erhältlich oder können mit Suchmaschinen im Internet auch an anderer Stelle gefunden werden.

      Tag-BeschreibungEingegebenErgebnis
      Anker werden benutzt um Links zu anderen Seiten zu erstellen.<a href="http://lopsta.com">Lopsta E-Commerce</a>Lopsta E-Commerce
      Hervorgehoben<em>Hervorgehoben</em>Hervorgehoben
      Fett<strong>Fett</strong>Fett
      Zitat<cite>Zitat</cite>Zitat
      Kodierter Text um Quelltexte anzuzeigen<code>Code</code>Code
      Ungeordnete Liste – Mit <li> wird jedes Listenelement begonnen<ul> <li>Erstes Element</li> <li>Zweites Element</li> </ul>
      • Erstes Element
      • Zweites Element
      Geordnete Liste – Mit <li> wird jedes Listenelement begonnen<ol> <li>Erstes Element</li> <li>Zweites Element</li> </ol>
      1. Erstes Element
      2. Zweites Element
      Definitionslisten sind ähnlich zu anderen HTML-Listen. <dl> leitet die Definitionsliste ein, <dt> enthält den zu definierenden Begriff und <dd> enthält die Definitionsbeschreibung.<dl> <dt>Erste Bedingung</dt> <dd>Erste Definition</dd> <dt>Zweiter Begriff</dt> <dd>Zweite Definition</dd> </dl>
      Erste Bedingung
      Erste Definition
      Zweiter Begriff
      Zweite Definition

      Die meisten Sonderzeichen können problemlos direkt eingegeben werden.

      Falls Probleme auftreten, sollten HTML-Entitäten verwendet werden. Ein Beispiel ist &amp; für ein kaufmännisches &. Eine vollständige Liste stellt SelfHTML bereit. Einige Zeichen sind:

      ZeichenbeschreibungEingegebenErgebnis
      Kaufmännisches Und&amp;&
      Mehr als&gt;>
      Weniger als&lt;<
      Anführungszeichen&quot;"
    • Zeilenumbrüche und Absätze werden automatisch erkannt. Die Tags für Zeilenumbrüche (<br />) und Absätze (<p></p>) werden automatisch eingefügt. Wenn Absätze nicht erkannt werden, sollten noch einige Leerzeilen eingefügt werden.
    • Video Filter

      You may insert videos from popular video sites by using a simple tag [video:URL].

      Examples:

      • Single video:
        [video:http://www.youtube.com/watch?v=uN1qUeId]
      • Random video out of multiple:
        [video:http://www.youtube.com/watch?v=uN1qUeId1,http://www.youtube.com/watch?v=uN1qUeId2]
      • Override default autoplay setting: [video:http://www.youtube.com/watch?v=uN1qUeId autoplay:1]
      • Override default width and height:
        [video:http://www.youtube.com/watch?v=uN1qUeId width:X height:Y]
      • Align the video:
        [video:http://www.youtube.com/watch?v=uN1qUeId align:right]

      Supported sites: YouTube, Google Video, Tangle, DailyMotion, Eyespot, Revver, Vimeo, Flickr Slideshows, Flickr Video, Game Videos, Meta Cafe, Game Trailers, College Humor, MySpace, Capped, Blip.tv, Slideshare.

      Special instructions:

      Some codecs need special input. You'll find those instructions here.
      • Slideshare:
        You need to construct your own URL, using the "Wordpress Embed" code from Slideshare, extract the "id" and "doc" parts, and form the URL like this: slideshare.net/?id=1759622&doc=usingdrupal-090723103440-phpapp01.
  • Wiki:
    • Syntax highlighting of source code can be enabled with the following tags:

      • Generic syntax highlighting tags: "<code>", "<blockcode>".
      • Language specific syntax highlighting tags: .

      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: "drupal5" (for Drupal 5), "javascript" (for Javascript), "php" (for PHP).
      • 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.

      Defaults:

      • Default highlighting mode for generic syntax highlighting tags: the default language used for syntax highlighting is "php".
      • Default line numbering: no line numbers.

      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="javascript" linenumbers="normal">
      foo = "bar";
      baz = "foz";
      </code>
      Code block with syntax highlighting for Javascript source code
      and normal line numbers.
      <code language="javascript" start="23" fancy="7">
      foo = "bar";
      baz = "foz";
      </code>
      Code block with syntax highlighting for Javascript source code,
      line numbers starting from 23
      and highlighted line numbers every 7th line.