Markdown Syntax Guide

    XL Release allows your to style your text using 'Markdown' syntax. Markdown is a way to indicate headers, hyperlink, italic, etc. in your text without being in the way. In XL Release, markdown is supported in task descriptions and comments.

    This manual gives a brief overview of the most common Markdown commands.

    Headers

    When you start a line with one or more # characters, it becomes a header

    # Header 1
    
    ## Header 2
    
    ###### Header 6
    

    Hyperlinks

    The simplest way to create a clickable hyperlink is by entering a web site link starting with http://

    Visit our documentation at http://docs.xebialabs.com/xl-release/
    

    To create a link text, use this example:

    Please visit [the XebiaLabs website](http://xebialabs.com/)
    

    Bold and italic

    Surround a word and phrase with a single _ (underscore) to make it italic. For bold, use a double * (asterisk).

    Choose between **bold** and _italic_.
    

    Lists

    Bullet lists are created by starting the link with a * (asterisk), followed by a space and then the text of the item

    Bullet list:
    * One item
    * Another item
    

    A numbered list is created by putting a number in front, followed by a dot. The numbering does not have to be exact, Markdown will calculate the proper order for you!

    Numbered list:
    1. First item
    2. Second item
    10. Last item
    

    More information

    Markdown has more options. For a full explanation, please refer to the Markdown guide by John Gruber.