Wiki Syntax
Wiki syntax used on Glossword pages generally comes from PHP Markdown wiki-engine, but with some changes and additions like implemented GeSHi - Generic Syntax Highlighter and a custom hash-tags.
Headings
- = H1 =
- == H2 ==
- === H3 ===
- ==== H4 ====
- ===== H5 =====
- ====== H6 ======
H1
H2
H3
H4
H5
H6
Font styles
Wiki | HTML |
---|---|
**bold** | bold |
__bold__ | bold |
*italic* | italic |
_italic_ | italic |
***bold and italic*** | bold and italic |
___bold and italic___ | bold and italic |
Links
Wiki | HTML |
---|---|
<http://glossword.biz/> | http://glossword.biz/ |
[Glossary compiler](http://glossword.biz/) | Glossary compiler |
<team@glossword.biz> | team |
#kb-o | Link to Knowledge base record #kb-o. |
#dl-1 | Link to file from Downloads section #dl-1. |
[Wiki syntax](#kb-o) | Link to Wiki syntax. |
Direct link to file
phpmyadmin_glossword_theme.zip (143 KB)
- Direct link to file ![][dl-8]
A special characters
Wiki | HTML |
---|---|
A ==> B | A → B |
B <== A | B ← A |
A -- A | A — A |
(c) , (C) | ©, © |
(r) , (R) | ®, ® |
(TM) , (tm) | ™, ™ |
40^o | 40° |
""quote"" | «quote» |
''quote'' | „quote“ |
Lists
- Item 1
- Item 2
- - Item 1
- - Item 2
- Item 1
- Item 2
- 1. Item 1
- 2. Item 2
- Item 1.1
- Item 1.2
- - Item 1.1
- - Item 1.2
- term
- definition
- term
- : definition
Images
Images from Screenshots allowed only.
- ![Image description][img-3]
Align to right
- ![][img-1:]
Align to left
- ![][:img-q]
Tables
Head 1 | Head 2 |
---|---|
Cell 1 | Cell 2 |
- | Head 1 | Head 2 |
- | ------ | ------ |
- | Cell 1 | Cell 2 |
Left | Center | Right |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
- | Left | Center | Right |
- | :- | :-: | -: |
- | Cell 1 | Cell 2 | Cell 3 |
Program code
Inline code()
sample
- Inline `code()` sample
{{{ block code sample }}}
{{{ block code sample }}}
php
- <?php
- phpinfo();
- ?>
{{{php
phpinfo();
}}}
javascript
- alert( "Javascript" );
{{{js
alert( "Javascript" );
}}}
css
- .header { background-color: #EEE; }
{{{css
.header { background-color: #EEE; }
}}}
html
- <div> <span> <em>Contents</em> </span> </div>
{{{html
<div> <span> <em>Contents</em> </span> </div>
}}}
xml
- <?xml version="1.0" encoding="UTF-8"?>
- <glossword version="1.9.3">
- ...
- </glossword>
{{{xml
<?xml version="1.0" encoding="UTF-8"?>
<glossword version="1.9.3">
...
</glossword>
}}}
sql
- SELECT version();
{{{sql
select version();
}}}
apache
- ## no www
- RewriteCond %{HTTP_HOST} ^www\.glossword\.biz$ [NC]
- RewriteRule ^(.*)$ http://glossword.biz/$1 [R=301,L]
{{{apache
## no www
RewriteCond %{HTTP_HOST} ^www\.glossword\.biz$ [NC]
RewriteRule ^(.*)$ http://glossword.biz/$1 [R=301,L]
}}}
bash
- cd existing_git_repo
- git remote add origin git@github.com:glosswordteam/Glossword.git
- git push origin master
{{{bash
cd existing_git_repo
git remote add origin git@github.com:glosswordteam/Glossword.git
git push origin master
}}}
ini
- LJADM0001=Control Panel
- LJADM0002=Configure component
- LJADM0003=Continue to Control Panel
{{{ini
LJADM0001=Control Panel
LJADM0002=Configure component
LJADM0003=Continue to Control Panel
}}}
robots
- User-agent: *
- Disallow: /admin/
- Disallow: /phpmyadmin/
{{{robots
User-agent: *
Disallow: /admin/
Disallow: /phpmyadmin/
}}}