Drucken
On the left column you see the source text with markup, and on the right column, the output once saved.

Maketoc

{maketoc}

 


Title bar

-=A titlebar=-

 
A titlebar
Headings from level 1 to n
!h1 heading
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin consequat libero. Phasellus porta diam id justo. In eget neque ut metus aliquet bibendum. Curabitur lacinia aliquam sem. Praesent aliquam. Morbi quis tellus. Vestibulum nec neque commodo metus sagittis ullamcorper. Maecenas turpis. Mauris quis leo. Maecenas id felis. Nulla nec nibh. Morbi facilisis. Cras in ipsum a felis ornare dapibus.

 

h1 heading

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin consequat libero. Phasellus porta diam id justo. In eget neque ut metus aliquet bibendum. Curabitur lacinia aliquam sem. Praesent aliquam. Morbi quis tellus. Vestibulum nec neque commodo metus sagittis ullamcorper. Maecenas turpis. Mauris quis leo. Maecenas id felis. Nulla nec nibh. Morbi facilisis. Cras in ipsum a felis ornare dapibus.
!!h2 heading
Nullam mi. Praesent vehicula consectetuer tortor. Mauris venenatis leo at metus. Ut sit amet enim. Aenean tortor orci, hendrerit a, eleifend quis, pharetra eu, felis.

 

h2 heading

Nullam mi. Praesent vehicula consectetuer tortor. Mauris venenatis leo at metus. Ut sit amet enim. Aenean tortor orci, hendrerit a, eleifend quis, pharetra eu, felis.
!!!h3 heading
Vestibulum dignissim. Praesent non magna id ipsum iaculis pharetra. Nam tristique vestibulum felis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce eget nisi. Nullam quis nisi.

 

h3 heading

Vestibulum dignissim. Praesent non magna id ipsum iaculis pharetra. Nam tristique vestibulum felis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce eget nisi. Nullam quis nisi.
!!!!h4 heading
Cras euismod lectus vel metus. Praesent gravida. Nunc molestie mattis justo. Curabitur ornare, felis et vulputate dapibus, leo est condimentum enim, blandit ultrices orci mauris at eros. Pellentesque eu arcu eu massa mattis rhoncus. Ut volutpat mi in ligula. Pellentesque vitae tellus quis nibh feugiat ornare. Nullam arcu. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

 

h4 heading

Cras euismod lectus vel metus. Praesent gravida. Nunc molestie mattis justo. Curabitur ornare, felis et vulputate dapibus, leo est condimentum enim, blandit ultrices orci mauris at eros. Pellentesque eu arcu eu massa mattis rhoncus. Ut volutpat mi in ligula. Pellentesque vitae tellus quis nibh feugiat ornare. Nullam arcu. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.
Autonumbering in headings
!!# Introduction
Bla bla...

!!# Methodology
Bla bla...

!!!# Laboratory work
Bla bla...

!!!# Statistical analyses
Bla bla...

!!# Results
Bla bla...

!!# Discussion
Bla bla...

 

1. Introduction

Bla bla...

2. Methodology

Bla bla...

2.1. Laboratory work

Bla bla...

2.2. Statistical analyses

Bla bla...

3. Results

Bla bla...

4. Discussion

Bla bla...
Lists
Unordered list
*An __unordered__ list item
**A subitem
And some text
*Another item
. . . and more text . . .
*Item 3
. . . and some more text, to illustrate the line spacing.

 
  • An unordered list item
    • A subitem
And some text
  • Another item
. . . and more text . . .
  • Item 3
. . . and some more text, to illustrate the line spacing.
Ordered list
#An __ordered__ list item
##A subitem
+ And some text not breaking the numbering
#Another item
and more text (breaking the correlative numbering)
#Item 3
. . . and some more text, to illustrate the line spacing.

 
  1. An ordered list item
    1. A subitem

    And some text not breaking the numbering
  2. Another item
and more text (breaking the correlative numbering)
  1. Item 3
. . . and some more text, to illustrate the line spacing.
Tables
A table:
||Row One, Column One|Row One, Column Two
Row Two, Column One|Row Two, Column Two||

  A table:
Row One, Column OneRow One, Column Two
Row Two, Column OneRow Two, Column Two
Boxes
^A box^

 
A box
Links
An [http://tikiwiki.org|external link|nocache]

  An external link(external link)
An ((HomePage|internal link))

  An internal link
PLUGINS: Img
{img src=http://profiles.tikiwiki.org/img/tiki/tikilogo.png align=center }

 
Image

{img fileId=16 width=150 thumb="mouseover" align=center }

 
{img fileId=16 thumb=y imalign=center stylebox=border button=y desc="Mainboard MSI K8N Neo4"  max=200 rel=box align=center}

 
Image
Mainboard MSI K8N Neo4

PLUGINS: Quote
Quote plugin:
{QUOTE()}
Gebt mir ein bisschen Gelassenheit, Dinge hinzunehmen, die ich nicht ändern kann,
gebt mir ein bisschen Mut, Dinge zu ändern, die ich ändern kann,
und vor allem gebt mir die Weisheit, das eine von dem anderen zu unterscheiden!

--Reinhold Niebuhr, dt.-amerikanischer Theologe
{QUOTE}

  Quote plugin:
Zitat:
Gebt mir ein bisschen Gelassenheit, Dinge hinzunehmen, die ich nicht ändern kann,
gebt mir ein bisschen Mut, Dinge zu ändern, die ich ändern kann,
und vor allem gebt mir die Weisheit, das eine von dem anderen zu unterscheiden!

--Reinhold Niebuhr, dt.-amerikanischer Theologe
PLUGINS: Code
Standard Code plugin:
{CODE(wrap=>1)}
{Hello World in Pascal}

program HelloWorld(output);
begin
  WriteLn('Hello World!');
end.
{CODE}

  Standard Code plugin:
{Hello World in Pascal}

program HelloWorld(output);
begin
  WriteLn('Hello World!');
end.
__PHP__ code 
im __geshi__ (Generic Syntax Highlighter) Format 
{CODE(colors=php)}
<?php
  // Hallo Welt in PHP
  echo 'Hallo, Welt!';
?>{CODE}

  PHP code
im geshi (Generic Syntax Highlighter) Format
<?php
  // Hallo Welt in PHP
  echo 'Hallo, Welt!';
?>
__Microsoft C#__ code 
im __geshi__ (Generic Syntax Highlighter) Format
{CODE(colors=csharp)}
// Hallo Welt in Microsoft C#.

using System;

class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hallo, Welt!");
        return 0;
    }
}
{CODE}

  Microsoft C# code
im geshi (Generic Syntax Highlighter) Format
// Hallo Welt in Microsoft C#.
 
using System;
 
class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hallo, Welt!");
        return 0;
    }
}

__Perl__ code 
im __geshi__ (Generic Syntax Highlighter) Format
{CODE(colors="perl")}
#! /usr/bin/perl -w
    eval 'exec /opt/perl_32/bin/perl -S $0 ${1+"$@"}'
        if 0; #$running_under_some_shell

use strict;
use File::Find ();
use Fcntl ':mode';

# Set the variable $File::Find::dont_use_nlink
use vars qw/*name *dir *prune/;
*name   = *File::Find::name;
*dir    = *File::Find::dir;
*prune  = *File::Find::prune;

sub wanted;
sub ls ();

my @rwx = qw(--- --x -w- -wx r-- r-x rw- rwx);

my (%uid, %user);
while (my ($name, $pw, $uid) = getpwent) {
    $user{$uid} = $name unless exists $user{$uid};
}
....
{CODE}

  Perl code
im geshi (Generic Syntax Highlighter) Format
#! /usr/bin/perl -w
    eval 'exec /opt/perl_32/bin/perl -S $0 ${1+"$@"}'
        if 0; #$running_under_some_shell
 
use strict;
use File::Find ();
use Fcntl ':mode';
 
# Set the variable $File::Find::dont_use_nlink
use vars qw/*name *dir *prune/;
*name   = *File::Find::name;
*dir    = *File::Find::dir;
*prune  = *File::Find::prune;
 
sub wanted;
sub ls ();
 
my @rwx = qw(--- --x -w- -wx r-- r-x rw- rwx);
 
my (%uid, %user);
while (my ($name, $pw, $uid) = getpwent) {
    $user{$uid} = $name unless exists $user{$uid};
}
....

__SHELL__ (bash) code
im __geshi__ (Generic Syntax Highlighter) Format
{CODE(colors="Bash")}
...
programm_option()
{
n_HELP_INDEX=${#HELP_ARRAY[@]}
HELP_INDEX=3
while (( HELP_INDEX <= n_HELP_INDEX )); do
  printf "${HELP_ARRAY[HELP_INDEX]}"
  let HELP_INDEX=HELP_INDEX+1
done
}
...{CODE}

  SHELL (bash) code
im geshi (Generic Syntax Highlighter) Format
...
programm_option()
{
n_HELP_INDEX=${#HELP_ARRAY[@]}
HELP_INDEX=3
while (( HELP_INDEX <= n_HELP_INDEX ))
 do
  printf "${HELP_ARRAY[HELP_INDEX]}"
  let HELP_INDEX=HELP_INDEX+1
done
}
...

__SQL__ code
im __geshi__ (Generic Syntax Highlighter) Format
...eine Variante des regulären SELECT.
{CODE(colors="sql")}
SELECT * 
   INTO OUTFILE '/home/mysql/export.csv'
   FIELDS
      TERMINATED BY ','
      OPTIONALLY ENCLOSED BY '"'
      LINES TERMINATED BY '\n'
   FROM TableName;
{CODE}

  SQL code
im geshi (Generic Syntax Highlighter) Format
...eine Variante des regulären SELECT.
SELECT * 
   INTO OUTFILE '/home/mysql/export.csv'
   FIELDS
      TERMINATED BY ','
      OPTIONALLY ENCLOSED BY '"'
      LINES TERMINATED BY '\n'
   FROM TableName;

PLUGINS: Fancytable
FANCYTABLE plugin:
{FANCYTABLE(head=>head one~|~head two~|~head three)}cell one~|~cell two~|~cell three
r2 c1~|~ r2 c2~|~ r3 c2{FANCYTABLE}

  FANCYTABLE plugin:
head one head two head three
cell one cell two cell three
r2 c1 r2 c2 r3 c2
FANCYTABLE plugin mit Zeilenumbruch in Spalten
und zusätzlicher Textforamtierung:
{FANCYTABLE( head => Server~|~FQDN~|~Aliases~|~Beschreibung)}
suhuall1dmz~|~''__suhuall1dmz.ccf-hu.dmz__''~|~suhuall1dmz~|~__Haupt XEN Application Server__ %%%~~#F00:__Primary__ Cluster Node~~  %%%ssh [[WAN forwarding] 
suhuall2dmz~|~''__suhuall2dmz.ccf-hu.dmz__''~|~ccf-it.net [[:224]%%%hu.ccf-it.net [[:289] ~|~__Backup XEN Application Server__ %%%~~#F00:__Secondary__ Cluster Node~~  %%%ssh [[WAN forwarding]
linccfbackdmz~|~''__linback.ccf-hu.dmz__''~|~ccf-consulting.net [[:224]%%%hu.ccf-consulting.net [[:289] ~|~__Backup XEN Application Server__ %%%ssh [[WAN forwarding]{FANCYTABLE}

  FANCYTABLE plugin mit Zeilenumbruch in Spalten
und zusätzlicher Textforamtierung:
Server FQDN Aliases Beschreibung
suhuall1dmz suhuall1dmz.ccf-hu.dmz suhuall1dmz Haupt XEN Application Server
Primary Cluster Node
ssh [WAN forwarding]
suhuall2dmz suhuall2dmz.ccf-hu.dmz ccf-it.net [:224]
hu.ccf-it.net [:289]
Backup XEN Application Server
Secondary Cluster Node
ssh [WAN forwarding]
linccfdmz linccfdmz.ccf-hu.dmz ccf-it.net [:289]
hu.ccf-it.net [:208]
Haupt File Server
ssh [WAN forwarding]

Syntax und Datei Inhalte
{DIV(bg=#CCCCCC)}~pp~cfg "HP-UX B.11.31 archive" {
        description "Beschreibung des Archivs..."
        "/opt/ignite/data/Rel_B.11.31/config"
        "/var/opt/ignite/data/Rel_B.11.31/GoldenImage_cfg"
        "/var/opt/ignite/config.local"
        }
~/pp~{DIV}

 
cfg "HP-UX B.11.31 archive" {
        description "Beschreibung des Archivs..."
        "/opt/ignite/data/Rel_B.11.31/config"
        "/var/opt/ignite/data/Rel_B.11.31/GoldenImage_cfg"
        "/var/opt/ignite/config.local"
Hinweise und Bildschirm Ausgaben
{DIV(bg=#FFFFCC)}~pp~WARNING: CLEAN_LEVEL set to 2:
(see -l option for make_sys_image(1M))
While this command is executing at clean level 2, the system
should be as quiet as possible.  The host and/or networking
information on the system are temporarily set to newconfig
values.  After the command is complete these files are 
returned to their previous state.
~/pp~{DIV}

 
WARNING: CLEAN_LEVEL set to 2:
While this command is executing at clean level 2, the system
should be as quiet as possible.  The host and/or networking
information on the system are temporarily set to newconfig
values.  After the command is complete these files are 
returned to their previous state.