---
title: "Feature: #82091 - Allow inline rendering in SVG content object"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-82091"
source: "Changelog/9.0/Feature-82091-AllowInlineRenderingInSVGContentObject.rst"
typo3-version: "9.0"
typo3-major: 9
type: "feature"
issue: 82091
forge: "https://forge.typo3.org/issues/82091"
tags: ["Frontend", "TypoScript"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #82091 - Allow inline rendering in SVG content object {#feature-82091}

See [forge#82091](https://forge.typo3.org/issues/82091)

## Description {#description}

The SVG content object supports a new option to render a SVG file as `<svg>` tag.
The new setting `renderMode` can be set to `inline` to render an inline version of the SVG file.
The `renderMode` property additionally has `stdWrap` capabilities.

```typoscript
page.10 = SVG
page.10 {
   renderMode = inline
   src = fileadmin/foo.svg
}
```

## Impact {#impact}

SVG can now be rendered as `<svg>` tag.
