How do I format labeller instructions?

How can I provide labeller instructions that allow for some rudimentary formatting, like newlines and lists? Most of the example templates use the tag for (short) instructions, but this doesn’t seem to allow HTML or even ‘\n’, in contrast to .

I’m using version 1.13.1, controlled entirely through the API.

It should be written in html format, e.g.

<p>new<br>line</p>

Do you mind giving an example? I can think of a few ways to write HTML in a header but it’s not clear to me which, if any, work.

  • Doesn’t work because < is not allowed in attribute values.
  1. new
    line

  • Doesn’t work because it complains that the
    tag is not closed.
  1. new
    line

This doesn’t raise any parse errors, but the playground will not display any output if this is present anywhere in the config.

Go to Project settings > Annotation > Instructions

I see, and this can presumably be set in the API call to create a project (https://labelstud.io/api#tag/Projects/operation/api_projects_create) as the expert_instruction field. Thanks!