Skip to content

References

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
1
2
![SQL Injection](/assets/name/image.png){#sqli}
As you see in [](#sqli) (e.g. rendered as "Figure 3")
HTML
1
2
<figure id="sqli"><img src="/assets/name/image.png"><figcaption>SQL Injection</figcaption></figure>
As you see in <ref to="sqli" /> (e.g. rendered as "Figure 3")

Reference Findings

You need the finding ID of the finding you want to reference.

  1. Open the other finding that should be linked
  2. Copy the last UUID from the URL Grab the finding ID
Markdown
1
See [](#00000000-0000-0000-0000-000000000000)... (e.g. rendered as "1.3 SQL injection")
HTML
1
See <ref to="#00000000-0000-0000-0000-000000000000" />... (e.g. rendered as "1.3 SQL injection")

Reference Headings

You can reference headings if your design supports it.

Markdown
1
2
# Findings {#findings .in-toc.numbered}
Find details in [](#findings) (rendered as "1 Findings").
HTML
1
2
<h1 id="findings" class="in-toc numbered">Findings</h1>
Find details in <ref to="findings" /> (rendered as "1 Findings").