Opsteltips
- If you include a textual smiley in your post (see chart below), it will be replaced by a graphical smiley.
Toegelaten HTML-tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <strike>
Op deze site kan HTML worden gebruikt. Terwijl het leren van de volledige HTML-code overweldigend kan zijn, is het leren van een beperkte aantal basis HTML-'tags' veel eenvoudiger. Deze tabel geeft een aantal voorbeelden van iedere tag die op deze site kan worden gebruikt.
Voor meer informatie zie de HTML-specificaties van W3C of gebruik uw favoriete zoekmachine om een site te te vinden die uitleg over HTML geeft.
Tag Beschrijving U typt U krijgt Ankers worden gebruikt om links te maken naar andere pagina's. <a href="http://amedee.be">amedee.be</a>amedee.be Benadrukt <em>Benadrukt</em>Benadrukt Sterk <strong>Sterk</strong>Sterk Geciteerd <cite>Geciteerd</cite>Geciteerd Code-tekst, gebruikt om programmacode weer te geven <code>Code</code>CodeOngeordende lijst - gebruik <li> voor elke lijst-item <ul> <li>Eerste item</li> <li>Tweede item</li> </ul>- Eerste item
- Tweede item
Geordende lijst - gebruik <li> voor elk lijst-item <ol> <li>Eerste item</li> <li>Tweede item</li> </ol>- Eerste item
- Tweede item
Definitielijsten zijn zeer gelijkaardig aan andere HTML-lijsten. <dl> start de definitielijst, <dt> start de definitieterm en <dd> start de definitiebeschrijving. <dl> <dt>Eerste term</dt> <dd>Eerste definitie</dd> <dt>Tweede term</dt> <dd>Tweede definitie</dd> </dl>- Eerste term
- Eerste definitie
- Tweede term
- Tweede definitie
Er is geen hulp beschikbaar voor tag img. Er is geen hulp beschikbaar voor tag strike. De meest gebruikelijke karakters kunnen direct ingegeven worden zonder problemen.
Indien u wel problemen ondervindt, probeer dan eens HTML-karaters te gebruiken. Een standaard voorbeeld is & voor een ampersand &-karakter. Voor een volledige lijst van karakters: zie HTML's entititeiten-pagina. Een aantal van de beschikbare karakters zijn:
Karakterbeschrijving U typt U krijgt Ampersand && Groter dan >> Kleiner dan << Aanhalingsteken "" 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, class. The possible values are: "
bash" (for Bash), "drupal6" (for Drupal 6), "html4strict" (for HTML), "javascript" (for Javascript), "mysql" (for MySQL), "perl" (for Perl), "php" (for PHP), "vbnet" (for vb.net), "xml" (for XML). - The supported tag styles are:
<foo>,[foo],[[foo]]. - 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: when no language attribute is specified, no syntax highlighting will be done.
- Default line numbering: no line numbers.
Examples:
You type You 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="vbnet" linenumbers="normal">
foo = "bar";
baz = "foz";
</code>Code block with syntax highlighting for vb.net source code
and normal line numbers.<code language="vbnet" start="23" fancy="7">
foo = "bar";
baz = "foz";
</code>Code block with syntax highlighting for vb.net source code,
line numbers starting from 23
and highlighted line numbers every 7th line.- Generic syntax highlighting tags: "
- Adressen van webpagina's en e-mailadressen worden automatisch naar links omgezet.
- Each email address will be obfuscated in a human readable fashion or (if JavaScript is enabled) replaced with a spamproof clickable link.
Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:
[quote]This is a simple quote.[/quote]
is displayed as:This is a simple quote.Additionally, there is an optional attribute which allows quotes to specify the original author.
[quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
is displayed as:This is a quote with an attribution line.Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.
[quote]I think she says it best... [quote=Ms. Quotation]This is a quote nested within another quote.[/quote] but you can't argue with [quote=Ms. Reply]The more quotes, the merrier. Just don't get too carried away.[/quote] And I have nothing more to say.[/quote]
is displayed as:I think she says it best...This is a quote nested within another quote.but you can't argue withThe more quotes, the merrier. Just don't get too carried away.And I have nothing more to say.- Regels en paragrafen worden automatisch herkend. De <br /> regeleinde-, <p> paragraaf- en </p> paragraafeinde-tags worden automatisch ingevoegd Indien paragrafen niet herkend worden, voeg dan gewoonweg een aantaal lege regels toe.
