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

indentWidth

Number of spaces per indentation level when useTabs is false.

Typenumber
Default2 (from global config)
Range1255

Has no visible effect when useTabs is true.

Example

indentWidth: 2

<svg>
  <g>
    <rect x="0" y="0" width="10" height="10" />
  </g>
</svg>

indentWidth: 4

<svg>
    <g>
        <rect x="0" y="0" width="10" height="10" />
    </g>
</svg>

Config

{
  "svg": {
    "useTabs": false,
    "indentWidth": 4
  }
}