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

  • Адреса страниц и электронной почты автоматически преобразуются в ссылки.
  • Доступны HTML теги: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <hr>

    Этот сайт допускает использование материалов с разметкой HTML. Изучение всего языка HTML может показаться пугающим, но использование небольшого количества основных "тегов" - это очень просто. Приведенная таблица показывает примеры для каждого тега из доступных на сайте.

    Больше информации вы можете получить на странице официальных спецификаций HTML или используйте ваш любимый поисковик, чтобы найти сайты, разъясняющие HTML.

    Описание тегаВы пишетеВы получаете
    Якоря используются для создания ссылок на другие страницы.<a href="http://www.13school.ru">agent</a>agent
    Курсив<em>Курсив</em>Курсив
    Сильный<strong>Сильный</strong>Сильный
    Цитата<cite>Цитата</cite>Цитата
    Для отображения исходных текстов программ<code>Исходный код</code>Исходный код
    Ненумерованный список – используйте <li> для начала каждого элемента списка<ul> <li>Первый элемент</li> <li>Второй элемент</li> </ul>
    • Первый элемент
    • Второй элемент
    Нумерованный список – используйте <li> для начала каждого элемента списка<ol> <li>Первый элемент</li> <li>Второй элемент</li> </ol>
    1. Первый элемент
    2. Второй элемент
    Списки определений похожи на другие списки HTML. <dl> начинает список определений, <dt> начинает определяемый термин и <dd> начинает описание определения.<dl> <dt>Первый термин</dt> <dd>Первое определение</dd> <dt>Второй термин</dt> <dd>Второе определение</dd> </dl>
    Первый термин
    Первое определение
    Второй термин
    Второе определение
    Справки для тега img нет.
    Справки для тега hr нет.

    Большинство малоиспользуемых символов могут быть введены безо всяких проблем.

    Если проблемы всё же возникают, попробуйте использовать подстановки для символов языка HTML. Например, &amp; для вывода знака амперсанда. Полный список таких подстановок смотрите на странице подстановки. Некоторые из доступных символов:

    Описание знакаВы пишетеВы получаете
    Амперсанд&amp;&
    Больше чем&gt;>
    Меньше чем&lt;<
    Кавычка&quot;"
  • Строки и параграфы распознаются автоматически. Теги переноса строки <br />, параграфа <p> и закрытия параграфа </p> вставляются автоматически. Если параграфы не распознаны, просто добавьте пару пустых строк.
  • Syntax highlighting of source code can be enabled with the following tags:

    • Generic syntax highlighting tags: "<code>", "<blockcode>".
    • Language specific syntax highlighting tags: "<asm>" for ASM source code, "<bash>" for Bash source code, "<c>" for C source code, "<cmake>" for CMake source code, "<cpp>" for C++ source code, "<qt>" for C++ (QT) source code, "<csharp>" for C# source code, "<delphi>" for Delphi source code, "<html>" for HTML source code, "<java>" for Java source code, "<javascript>" for Javascript source code, "<latex>" for LaTeX source code, "<lisp>" for Lisp source code, "<make>" for GNU make source code, "<pascal>" for Pascal source code, "<perl>" for Perl source code, "<php>" for PHP source code, "<prolog>" for Prolog source code, "<python>" for Python source code, "<ruby>" for Ruby source code, "<sql>" for SQL 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: "asm" (for ASM), "bash" (for Bash), "c" (for C), "cmake" (for CMake), "cpp" (for C++), "cpp-qt" (for C++ (QT)), "csharp" (for C#), "delphi" (for Delphi), "html" (for HTML), "html4strict" (for HTML), "java" (for Java), "javascript" (for Javascript), "latex" (for LaTeX), "lisp" (for Lisp), "make" (for GNU make), "pascal" (for Pascal), "perl" (for Perl), "php" (for PHP), "prolog" (for Prolog), "python" (for Python), "qt" (for C++ (QT)), "ruby" (for Ruby), "sql" (for SQL).
    • 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.

    Defaults:

    • Default highlighting mode for generic syntax highlighting tags: when no language attribute is specified, no syntax highlighting will be done.
    • Default line numbering: fancy line numbers (every 5 lines).

    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="pascal" linenumbers="normal">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Pascal source code
    and normal line numbers.
    <code language="pascal" start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    </code>
    Code block with syntax highlighting for Pascal source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
    <asm>
    foo = "bar";
    baz = "foz";
    </asm>
    Code block with syntax highlighting for ASM source code.
    <asm start="23" fancy="7">
    foo = "bar";
    baz = "foz";
    <asm>
    Code block with syntax highlighting for ASM source code,
    line numbers starting from 23
    and highlighted line numbers every 7th line.
  • Quoted content can be placed between [quote] tags in order to be displayed as an indented quote. Every [quote] tag must have a corresponding [/quote] tag. For example:

    [quote]This is a simple quote.[/quote]
    is displayed as:

    Quote:
    This is a simple quote.

    Additionally, there is an optional attribute which allows quotes to specify the original author.

    [quote=Mr. Drupal]This is a quote with an attribution line.[/quote]
    is displayed as:

    Mr. Drupal wrote:
    This is a quote with an attribution line.

    Finally, multiple [quote] tags can be nested within one another. Just remember that every [quote] tag must have a corresponding [/quote] tag.

    [quote]I think she says it best...
    [quote=Ms. Quotation]This is a quote nested within another quote.[/quote]
    but you can't argue with
    [quote=Ms. Reply]The more quotes, the merrier.
    Just don't get too carried away.[/quote]
    And I have nothing more to say.[/quote]
    is displayed as:

    Quote:
    I think she says it best...
    Ms. Quotation wrote:
    This is a quote nested within another quote.
    but you can't argue with
    Ms. Reply wrote:
    The more quotes, the merrier. Just don't get too carried away.
    And I have nothing more to say.
  • Если вы вставите текстовый смайл в ваше сообщение (см. диаграмму ниже), он будет заменен на графический смайл.
    Смайлы
    СмайлСокращения