Default

Default is intended for inline use.

const element = document.getElementById("my-id");

Block

Block modifier gives more spacing and full width.

const element = document.getElementById("my-id");

Multi line

Multi line modifier gives the correct white space over multiple lines.

const element = document.getElementById("my-id"); if (element) { doMagic(element); if (someThing) { yayForIndentation(); } }