Instiki features
Markdown formatting
Format text as italic and fat which is the same as emphasis and strong emphasis.
See links under References.
Uploaded files
General files
Image files
Audio and video files are also supported.
Links
URL links
Automatic links
http://michelf.com/projects/php-markdown/concepts/
Image links
Lists
Unordered
- Unordered lists
- sub-item
- sub-sub-item
- sub-item
Ordered
- Ordered lists
- sub-item
- sub-sub-item
- sub-item
Combined
- Ordered lists
- sub-item
- sub-sub-item
- sub-item
Math and equations
Equations
[
f(z) = \sum_{n=0}^\infty \frac{f^{(n)}(a)}{n!} (z-a)^n
]
Let $N_m = {n \in \mathbb{Z}; n \geq m}$, $m \geq 2$. If $N_m = A' \cup B' \cup C'$ is a partition of $N_m$ in three non-empty pairwise disjoint sets there is a triple $a \in A'$, $b \in B'$ and $c \in C'$ such that $a$, $b$ and $c$ are sides in some triangle.
SVG Graphics
SVG is supported
Tables
A simple table
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
A cell justified table
Item | Value |
---|---|
Computer | $1600 |
Phone | $12 |
Pipe | $1 |
I suppose latex
tables are also possible.
Source code
General code. Put 4 spaces before each row.
#include <stdio.h>
int main( void )
{
printf("%s\n", "Hello, World!");
return 0;
}
Source code with language specific color encoding. Put lang specifier before code.
# Output "I love Ruby"
say = "I love Ruby"
puts say
# Output "I *LOVE* RUBY"
say['love'] = "*love*"
puts say.upcase
# Output "I *love* Ruby"
# five times
5.times { puts say }
Create new pages
Just add a unique page name with brackets around it and it will be created.
If you want to change the link name enter alternative text after |
.
Just a reference to KursOversikt
Slideshow
Try you self
Try to edit the following page
Try and edit InstikiPlayground page
References
- J Distlers Instiki
- Markdown syntax
- Michel Fortin's PHP Markdown
- Michel Fortin's Markdown-Extra extensions