Compose tips

  • You can use Mediawiki formatting.

    You can use the following interwiki links:

    • path: Local path - mapped to $1
    • wp: Wikipedia - mapped to http://en.wikipedia.org/wiki/$1
    • dev: DevEiffelCom - mapped to http://dev.eiffel.com/$1
    • ref: StaticReference - mapped to isedoc/static/$1
    • origo: DevOrigo - mapped to http://eiffelstudio.origo.ethz.ch/wiki/$1
    • file: Local file - mapped to sites/default/files/$1

  • Syntax highlighting of source code can be enabled with the following tags:

    • Generic syntax highlighting tags: "<code>", "<blockcode>", "<eiffel>".
    • Language specific syntax highlighting tags: "<e>" for Eiffel source code.

    Options and tips:

    • The language for the generic syntax highlighting tags can be specified with one of the attribute(s): type, lang, language, class. The possible values are: "bash" (for Bash), "c" (for C), "cpp" (for C++), "csharp" (for C#), "diff" (for Diff), "dos" (for DOS), "e" (for Eiffel), "eiffel" (for Eiffel), "ini" (for INI), "java" (for Java), "python" (for Python), "reg" (for Microsoft Registry), "sql" (for SQL), "text" (for Text), "winbatch" (for Winbatch), "xml" (for XML).
    • Line numbering can be enabled/disabled with the attribute "linenumbers". Possible values are: "off" for no line numbers, "normal" for normal line numbers and "fancy" for fancy line numbers (every nth line number highlighted). The start line number can be specified with the attribute "start", which implicitly enables normal line numbering. For fancy line numbering the interval for the highlighted line numbers can be specified with the attribute "fancy", which implicitly enables fancy line numbering.
    • If the source code between the tags contains a newline (e.g. immediatly after the opening tag), the highlighted source code will be displayed as a code block. Otherwise it will be displayed inline.
    • A title can be added to a code block with the attribute "title".

    Defaults:

    • Default highlighting mode for generic syntax highlighting tags: the default language used for syntax highlighting is "eiffel".
    • Default line numbering: no line numbers.

    Examples:

    You typeYou get
    <code>foo = "bar";</code>Inline code with the default syntax highlighting mode.
    <code>
    foo = "bar";
    baz = "foz";
    </code>
    Code block with the default syntax highlighting mode.
    <code lang="c" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for C source code
    and normal line numbers.
    <code language="c" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for C source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
    <e>
    foo = "bar";
    baz = "foz";
    </e>
    Code block with syntax highlighting for Eiffel source code.
    <e start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    <e>
    Code block with syntax highlighting for Eiffel source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.