Markdown Syntax Guide

Useful markdown syntax supported by the PullRequest Reviewer platform

Code

Inline

This is `<code>`!

Block

```
function square(number) {
  return number * number;
};

function(2);
```

Block with syntax highlighting

```javascript
function square(number) {
  return number * number;
};

function(2);
```

Images

Emphasis

Headers

Blockquotes

Tables

Lists

Unordered

Ordered

HTML

Note: Using <> may cause contained characters not to render.

Last updated

Was this helpful?