February 20th, 2025
What is Markdown and how can I use it in StudyTeam?
By OneStudyTeam Customer Support Team
Markdown is a lightweight and easy-to-use way to format text when writing on the web. This formatting includes adding bolding, italics, headers, and images.
Currently, there are two places in StudyTeam you can use Markdown formatting:
- When creating a note for a patient in a trial
- When editing the Trial Information, accessed wherever you see the
icon.
Markdown works by adding symbols before and after sections of text, then once the text is saved the formatting will be displayed. For example, adding two asterisks before and after text will bold it the enclosed text.
How the text is written: |
How the text is displayed: |
** this is text i’d like to bold ** |
This is text i’d like to bold |
The most popular markdown symbols are # for headings, ** for bold, and __ for italics. Below are examples of ways to use markdown syntax to create formatted text.
Headers
By using a varying number of the # symbol, you will create different size text.
How the text is written: |
How the text is displayed: |
# This is large text |
This is large text |
## This is medium text (Two Pound Symbols) |
This is medium text |
Emphasis
By using various symbols you can add emphasis formatting
How the text is written: |
How the text is displayed: |
**this is text is bold** |
This text is bold |
__This text is italic__ (2 Underscores) |
This text is italic |
**__This text is bold and italic__** (2 Underscores + 2 Asterisks) |
This text is italic and bold |
Lists
At times you may want a list to be organized by bullets, other times by number. Below gives you two examples of how you may organize your lists. You can also use the - symbol to create list.
How the text is written: |
How the text is displayed: |
* Item 1 * Item 2 * Item 3 |
|
1. Item 1 2. Item 2 3. Item 3 |
|