Use the id-attributes of HTML elements for referencing items in your report. This allows you to reference for example:
Headings
Figures
Tables
Findings
and everything that has an id
Reference Images
Markdown
12
{#sqli}
As you see in [](#sqli) (e.g. rendered as "Figure 3")
HTML
12
<figureid="sqli"><imgsrc="/assets/name/image.png"><figcaption>SQL Injection</figcaption></figure>
As you see in <refto="sqli"/> (e.g. rendered as "Figure 3")
Reference Findings
You need the finding ID of the finding you want to reference. The markdown editor toolbar in projects provides a button to insert finding references.
Markdown
1
See [](#00000000-0000-0000-0000-000000000000)... (e.g. rendered as "1.3 SQL injection")
HTML
1
See <refto="#00000000-0000-0000-0000-000000000000"/>... (e.g. rendered as "1.3 SQL injection")