User login

Compose tips

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

    • Generic syntax highlighting tags: "<code>", "<blockcode>".
    • Language specific syntax highlighting tags: .

    Options and tips:

    • The language for the generic syntax highlighting tags can be specified with one of the attribute(s): type, lang, language. The possible values are: "actionscript" (for Actionscript), "ada" (for Ada), "apache" (for Apache), "asm" (for assembler), "asp" (for ASP), "bash" (for Bash), "c" (for C), "c_mac" (for C), "caddcl" (for CADDCL), "cadlisp" (for CADLISP), "cpp" (for C++), "csharp" (for CSharp), "css" (for CSS), "d" (for D), "delphi" (for Delphi), "diff" (for Diff), "div" (for DIV), "drupal5" (for ), "drupal6" (for ), "eiffel" (for Eiffel), "gml" (for GML), "html4strict" (for HTML), "java" (for Java), "javascript" (for JAVASCRIPT), "lisp" (for LISP), "lua" (for LUA), "matlab" (for M), "mpasm" (for Microchip Assembler), "nsis" (for nsis), "objc" (for Objective C), "oobas" (for OpenOffice.org Basic), "oracle8" (for Oracle 8), "pascal" (for Pascal), "perl" (for Perl), "php" (for PHP), "php-brief" (for PHP), "python" (for Python), "qbasic" (for QBasic/QuickBASIC), "smarty" (for Smarty), "sql" (for SQL), "vb" (for Visual Basic), "vbnet" (for vb.net), "vhdl" (for vhdl), "visualfoxpro" (for VFP), "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.
    • Beside the tag style "<foo>" it is also possible to use "[foo]".

    Defaults:

    • Default highlighting mode for generic syntax highlighting tags: the default language used for syntax highlighting is "php".
    • Default line numbering: normal 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="diff" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Diff source code
    and normal line numbers.
    <code language="diff" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Diff source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
  • Inline assets are allowed. Use the Insert Assets link or the WYSIWYG editor button to insert the proper format.
  • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.
  • Web page addresses and e-mail addresses turn into links automatically.