Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

spaceBeforeSelfClose

Whether to include a space before /> in self-closing tags.

Typeboolean
Defaulttrue

Example

spaceBeforeSelfClose: true (default)

<svg>
  <circle cx="50" cy="50" r="25" />
  <path d="M0 0L10 10" />
</svg>

spaceBeforeSelfClose: false

<svg>
  <circle cx="50" cy="50" r="25"/>
  <path d="M0 0L10 10"/>
</svg>

Config

{
  "svg": {
    "spaceBeforeSelfClose": false
  }
}