Description formatting

Applies to CucumberStudio Cloud, and to Enterprise ver. 3.3 - 3.5.6.0. Last updated on November 17, 2023

The descriptions of your projects, scenarios and so on can be formatted using the Markdown syntax (see here for a full list of its possibilities).

Description You type You get
Emphasized text
_Emphasized text_
Emphasized text
Bold text
**content**
content
Link
https://smartbear.com
smartbear.com
Bullet list

Here is my list

- one

- two

Here is my list

  • one
  • two
Ordered list

Here is my list

# one

# two

Here is my list

  1. one
  2. two
Code

```json
{
  "key" => {
    "key1" => "val1",
    "key2" => "val2"
  }
}
```


{
  "key" => {
    "key1" => "val1",
    "key2" => "val2"
  }
}

Images

You can display images in your descriptions:

In-lined:
![alt text](https://bit.ly/2HNY0rV "Logo Title Text 1")

Referenced:
![alt text][logo]

[logo]: https://bit.ly/2HNY0rV "Logo Title Text 2"

Which will be rendered as:

The CucumberStudio logo

See Also

Project lifecycle
Manage project settings

Highlight search results