Подсказки по редактированию

  • Подсветка синтаксиса исходного кода может быть активирована используя следующие теги:

    • Теги для подсветки синтаксиса: "<code>", "<blockcode>", "<pre>".
    • Language specific syntax highlighting tags: "<css>" for CSS source code, "<html4strict>" for HTML source code, "<javascript>" for Javascript source code, "<php>" for PHP source code.

    Опции и советы:

    • 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: "css" (for CSS), "html4strict" (for HTML), "javascript" (for Javascript), "php" (for PHP).
    • The supported tag styles are: <foo>, [foo].
    • 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".

    Стандартно:

    • Режим подсветки по умолчанию для основных тегов подсветки синтаксиса: the default language used for syntax highlighting is "php".
    • Нумерация строк по умолчанию: без нумерации строк.

    Пример:

    Вы пишетеВы получаете
    <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="php" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for PHP source code
    and normal line numbers.
    <code language="php" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for PHP source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
    <css>
    foo = "bar";
    baz = "foz";
    </css>
    Code block with syntax highlighting for CSS source code.
    <css start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    <css>
    Code block with syntax highlighting for CSS source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.