* This is a list
* The second item
* You may have different levels
* Another item
- The same list but ordered
- Another item
- Just use indention for deeper levels
- That's it
==== Embedding HTML and PHP in Wiki ====
You can embed raw HTML or PHP code into your documents by using the ''%%%%'' or ''%%
This is some inline HTML
And this is some block HTML
This is some inline HTML
And this is some block HTML
PHP example:
echo 'The PHP version: ';
echo phpversion();
echo ' (generated inline HTML)';
echo 'The same, but inside a block level element: ';
echo ''.phpversion().' ';
echo '
';
The same, but inside a block level element: | '; echo ''.phpversion().' | '; echo '