Help to edit documentation
Wikitext syntax
- Have a look at Wikipedia markup documentation.
- The current website does not support the full Wikipedia syntax, but still most of the needed cases.
- To add a link to another wiki page
-
[[Wiki Page Title]]
or[[Wiki Page Title|Custom text]]
(to use a specific text for the link) - for instance, a link to this current page would be
[[Help to edit documentation]]
: Help to edit documentation
-
- To add a link to any URL
-
[https://www.eiffel.com Eiffel.com]
(bracket, url, space text, bracket) - Result: Eiffel.com
-
- To embed inline code:
-
`foo.bar`
-
<code>foo.bar</code>
-
<eiffel>foo.bar</eiffel>
-
- To embed block code:
<code lang="eiffel">
class FOOBAR
</code>
<eiffel>
class FOOBAR
</eiffel>
```eiffel
class FOOBAR
```
Note: if you do not specify the lang, it is defaulted to "eiffel"
Templates
Top page templates
Used to qualify the current page.
ReviewRequested
{{ReviewRequested|This is a ReviewRequested message}}
UnderConstruction
{{UnderConstruction|This is a UnderConstruction message}}
UpdateNeeded
{{UpdateNeeded|This is a UpdateNeeded message}}
Beta
{{Beta|This is a beta message}}
Block templates
Caution
{{Caution|This is a caution message}}
Caution: This is a caution message
Definition
{{Definition|abc|This is a Definition message}}
Info
{{Info|This is a Info message}}
Note
{{Note|This is a Note message}}
Recommended
{{Recommended|This is a Recommended message}}
Rule
{{Rule|name=abc|text=This is a Rule message}}
Sample
{{Sample|This is a Sample message}}
SeeAlso
{{SeeAlso|This is a SeeAlso message}}
Tip
{{Tip|This is a Tip message}}
Warning
{{Warning|This is a Warning message}}
Inline templates
Key
This is a {{Key|key message}} in the text.
This is a
in the text.Error
This is a {{Inline-Error|error message}} in the text.
This is a
in the text.Info
This is a {{Inline-Info|info message}} in the text.
This is a
in the text.Success
This is a {{Inline-Success|success message}} in the text.
This is a
in the text.Warning
This is a {{Inline-Warning|warning message}} in the text.
This is a
in the text.