Help:Editing: Difference between revisions
Jump to navigation
Jump to search
(→Tables: aligning cell content) |
(→Tables) |
||
Line 145: | Line 145: | ||
|} |
|} |
||
|- |
|- |
||
| |
|Cell content can be formatted for each cell individually or for all cells on a same row |
||
<pre> |
<pre> |
||
{| class="wikitable" |
{| class="wikitable" |
||
Line 156: | Line 156: | ||
|align="center"|center |
|align="center"|center |
||
|align="right"|right |
|align="right"|right |
||
|- align="center" |
|||
|center |
|||
|center |
|||
|center |
|||
|} |
|||
|} |
|} |
||
</pre> |
</pre> |
||
Line 169: | Line 174: | ||
|align="center"|center |
|align="center"|center |
||
|align="right"|right |
|align="right"|right |
||
|- align="center" |
|||
|center |
|||
|center |
|||
|center |
|||
|} |
|} |
||
|} |
|} |
Revision as of 07:43, 22 June 2009
External Links
MediaWiki
MediaWiki - Meta
- Help Contents
- Editing
- Advanced editing | Editing FAQ | Edit toolbar | Export | Import | Shortcuts
- Style & formatting
- Wikitext examples | Reference card | HTML in wikitext | List | Table | Sorting | CSS
From Wikipedia
Hint and Tips
Use <div style="padding-left:...;"> to indend easily a pre, source or blockquote block:
* Look at my indented block:
<div style="padding-left:2em;"><pre>
Some PRE text
... some more ...
Let's finish here
</pre></div>
|
Some PRE text ... some more ... Let's finish here |
Frequently Used
Description | You type | You get |
anywhere | ||
Arrows entities |
⇒ ⇐ ⇓ ⇑ ⇔ → ↓ ↑ ← ↔ |
⇒ ⇐ ⇓ ⇑ ⇔ → ↓ ↑ ← ↔ |
only at the beginning of the line | ||
Definition list |
;Definition |
|
HTML Tags
Description | You type | You get |
Font color | You can use <font color="red">colors</font> | You can use colors |
Tables
Basic syntax for table is
{| [opt-table-attr] |- [opt-line-attr] |[opt-cell-attr |]Orange |[opt-cell-attr |]Apple |- [opt-line-attr |[opt-cell-attr |] |[opt-cell-attr |]Pie |- [opt-line-attr |[opt-cell-attr |]Butter |[opt-cell-attr]| Ice cream |}
Table can be easily formatted using templates like:
{| {{Prettytable}} |- |{{Hl2}}|First |Second |- |Third |{{Hl2}}|Fourth |} |
| |||||||||
Or better yet, using CSS (eg. see MediaWiki:Common.css) class wikitable
{| class="wikitable" |- !First |Second |- |Third !Fourth |} |
| |||||||||
Cell content can be formatted for each cell individually or for all cells on a same row
{| class="wikitable" |- !Very long header !Very long header !Very long header |- |align="left"|left |align="center"|center |align="right"|right |- align="center" |center |center |center |} |} |
|