Markdown syntax reference

Use these examples of a Markdown syntax to format text in PulseUno reviews, notifications, or the code browser.

PulseUno supports the CommonMark 0.30 specification of Markdown.

Character formatting

Syntax Result
*This text is italicized*, and so is _this_ This text is italicized, and so is this
**This text is bold**, and so is __this__ This text is bold, and so is this
***Italics and bold*** together, as is ___this___ Italics and bold together, as is this
~~This text is crossed out~~ This text is crossed out

Back to top

Inline code and code blocks

Syntax Result

For inline code, use the `back-quote character` (also known as backtick or grave).

For inline code, use the back-quote character (also known as backtick or grave).

For code blocks, use a 4-space indent or 3 backticks.

    Code line 1

    Code line 2

```
Code line 1
Code line 2
```

For code blocks, use a 4-space indent or 3 backticks.

Code line 1
Code line 2
Code line 1
Code line 2

Back to top

Line breaks and paragraphs

Syntax Result
Normally a single
new line is ignored.
Normally a single new line is ignored.
End a line with two spaces  
to insert a line break.
End a line with two spaces
to insert a line break.
Separate paragraphs

with a blank line.

Separate paragraphs

with a blank line.

Back to top

Headers and rules

Syntax Result

Header 1
========

# Another Header 1

Header 1

Another Header 1

Header 2
--------

## Another Header 2

Header 2

Another Header 2

A horizontal rule is 3 or more hyphens, asterisks or underscores on the same line with no other characters:
---
***
___

A horizontal rule is 3 or more hyphens, asterisks, or underscores on the same line with no other characters:

———————————————————————————————————

———————————————————————————————————

———————————————————————————————————

Back to top

Simple lists

Syntax Result

- Use a minus sign for a bullet
+ Or a plus sign
* Or an asterisk

  • Use a minus sign for a bullet

  • Or a plus sign
  • Or an asterisk

1. Use any numbers for a numbered list.
9. You can place numbers in any order.
7. The steps will be renumbered.

  1. Use any numbers for a numbered list.
  2. You can place numbers in any order.
  3. The steps will be renumbered.

Back to top

Links

Syntax Result
Basic link to https://admhelp.microfocus.com/pulseuno. Basic link to https://admhelp.microfocus.com/pulseuno.
Inline link to the [PulseUno Help Center](https://admhelp.microfocus.com/pulseuno). Inline link to the PulseUno Help Center.
Link to an [Inner File](directory/my-inner-file.txt) in the code browser. Link to an Inner File in the code browser.

Back to top

Images

Syntax Result
![Image](http://<URL>/images/review-success-icon.png)

You can use relative paths for images in the code browser:

![Image](images/review-success-icon.png)

You can use relative paths for images in the code browser:

Back to top

Tables

Syntax Result

| Column 1 Header | Column 2 Header |
| --------------- |---------------- |
| Row 1 | All text is left-aligned. |
| Row 2 | All text is left-aligned. |

Column 1 Header Column 2 Header
Row 1 All text is left-aligned.
Row 2 All text is left-aligned.

Back to top