Hinweise zum schreiben eines Beitrags
- Internet- und E-Mail-Adressen werden automatisch umgewandelt.
Zulässige 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-Beschreibung Eingegeben Ergebnis Anker werden benutzt um Links zu anderen Seiten zu erstellen. <a href="http://californication-tv.de">Californication Tv</a>Californication Tv Hervorgehoben <em>Hervorgehoben</em>Hervorgehoben Fett <strong>Fett</strong>Fett Zitat <cite>Zitat</cite>Zitat Kodierter Text um Quelltexte anzuzeigen <code>Code</code>CodeUngeordnete 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>- Erstes Element
- 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 & für ein kaufmännisches &. Eine vollständige Liste stellt SelfHTML bereit. Einige Zeichen sind:
Zeichenbeschreibung Eingegeben Ergebnis Kaufmännisches Und && Mehr als >> Weniger als << Anführungszeichen "" - 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. -
The Views module allows administrators to create dynamic lists of content for display in pages or blocks. It is possible to insert those lists into existing node bodies and blocks, but such inclusion requires that PHP filtering be turned on. The Insert View module allows any user to insert view listings using tag syntax, without the need for PHP execution permissions. The Insert View tag syntax for embedding a view is relatively simple:
[view:my_view]
is replaced by the content listing corresponding to the named view. In this case it is my_view.
[view:my_view=my_display]
invokes the my_view view using the my_display view display ID. If the display slot is left empty, the view's "default" display is used.
[view:my_view=my_display=1,2,3]
uses the my_display view display, and passes a comma delimited list of arguments (in this case 1, 2, and 3) to the view.
Here's an example you could use with the default view named "tracker" which uses the page display and takes a user ID as an argument:
[view:tracker=page=1]
In short this tag says, "Insert the view named tracker, use the "page" display, and supply the argument 1."
Sometimes you want to pass an argument without specifying a display ID. You can do that by leaving the display ID slot empty, like so:
[view:my_view==1]
How to find a display ID: On the edit page for the view in question, you'll find a list of displays at the left side of the control area. "Defaults" will be at the top of that list. Hover your mouse pointer over the name of the display you want to use. A URL will appear in the status bar of your browser. This is usually at the bottom of the window, in the chrome. Everything after #views-tab- is the display ID. For example in http://localhost/admin/build/views/edit/tracker?destination=node%2F51#views-tab-page the display ID would be "page".