Instiki features
Syntax test pages
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
Links with parentheses. Use %29
for right paren.
[twine](https://en.wikipedia.org/wiki/Twine_(software%29)
Automatic links
http://michelf.com/projects/php-markdown/concepts/
Image links
Math and equations
Equations
[
f(z) = \sum_{n=0}^\infty \frac{f^{(n)}(a)}{n!} (z-a)^n
]
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 InstikiPage
Slideshow
Try you self
Try to edit the following page
Try and edit InstikiPlayground page
CSS Styles
References
- J Distlers Instiki
- Markdown syntax
- Michel Fortin's PHP Markdown
- Michel Fortin's Markdown-Extra extensions