Skip to main content
All CollectionsAssembla Project Management
Customize Text Using Global Markups
Customize Text Using Global Markups
Toshi Dávila avatar
Written by Toshi Dávila
Updated over 4 months ago

Global Markup makes your text look dynamic and professional. Use Global Markups in tools that accept text input (Messages, Wikis, Tickets, and Stand Up Reports). It allows you to create hyperlinks to other objects such as tickets, Wiki files, files, revisions, or users, and allows you to insert images and URLs.

Basic text formatting

Format your text using the global markup syntax in Messages, Tickets, Stand Up Reports, and Wikis (when "textile" is selected for the markup format).

Title

Format

Result

Header Title (1)

h1. Title 1

Title 1

Header Title (2)

h2. Title 2

Title 2

Bold

This is *bold* text.

This is bold text.

Italic

This is _italic_.

This is italic.

Strikethrough

This is ~strikethrough~.

This is strikethrough.

Inline Code

Run @git status@ to view status.

Run git status to view status.

Bulleted List

* One

** One.two

* Two

  • One

    • One.two

  • Two

Numbered List

# One

# Two

## Two.one

  1. One

    1. Two

  2. Two.one

Numbered - Bulleted List

# One

** One.bullet

# Two

  1. One

    • One.bullet

  2. Two

Inserting an image or URL

Insert images and URLs using the global markup syntax.

Action

Format

Result

Inserting an image

Prerequisite: First, upload the image to the File tool.

  1. Syntax: [[Image:image_file_name]]

  2. This is a flower [[image:rose.png]]

This is a flower.

Inserting a direct link

  1. Syntax: [[url:url]]

  2. Here is the link to the Assembla website: [[url:https://www.assembla.com]]

Here is the link to the Assembla website: https://www.assembla.com

Inserting a link with a text display

  1. Syntax: [[url:url | display text]]

  2. On [[url:https://www.assembla.com|the home page]] you can see ...

On the home page you can see ...

Inserting code snippets

Prerequisite: Add the snippet tool to your space.

  1. Syntax: [[snippet:space name:ID]]

  2. You can accomplish this using this code: [[snippet:sahar-test:10753]]

You can accomplish this using this code:

Create hyperlinks to other objects such as tickets, Wiki files, files, revisions, or users using the global markup syntax.

Action

Format

Result

Linking to a wiki page.

[[wiki_name]]

or

[[wikiname|displayedtext]]

[[home]]

or

[[home|the Wiki home]]

Linking to a section on a wiki page.

[[wiki_name#section_name]]

or

[[wiki_name#section_name|display text]]

[[Example Page#Section One]]

or

[[Example Page#Section One|Section 1]]

Linking to a section within a wiki page.

Note: This action works only if you are in a wiki.

[[section_name]]

or

[[section_name|display text]]

[[#Section One|First Section]]

Linking to a ticket in the same space.

[[ticket:number]] or #5

[[ticket:5]] or #5

Linking to a commit.

Note: This action works only for the first repository added in the space.

[[revision:number]] or [[r:number]]

[[revision:number|text]] or [[r:number|text]]

[[revision:5]] [[r:ff33ee2159d]] This issue was corrected in [[r:fe343e5b|this comment]]

Linking to a file.

[[file:id_or_name]] or [[file:id_or_name|text]]

[[file:tables.sql]]

[[file:tables.sql|New tables]]

Linking to a user.

[[user:Assembla_username]] or [[user:Assembla_username|alternative text]]

Please welcome [[user:some_username|Our latest member]] in the space.

Notes:

  • You can use a page name in a URL. Substitute an underscore (_) in place of any spaces. E.g. Wiki page becomes Wiki_page.

  • You can create page names and links with CamelCase. This assumes any word with two or more uppercase characters separated by lowercase characters is a page link.

  • You can use CamelCase without linking to any page, in that case, use the ! sign in front of CamelCase word. E.g. !CamelCase


If you have any questions or need assistance, please email us at support@assembla.com.

Did this answer your question?