---
title: "Inline ViewHelper <f:inline>"
manual: "Fluid ViewHelper Reference"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3viewhelper:typo3fluid-fluid-inline@main"
source: "Global/Inline.rst"
modified: "2026-09-17T05:12:06+00:00"
---

# Inline ViewHelper `<f:inline>`

Inline Fluid rendering ViewHelper

Renders Fluid code stored in a variable, which you normally would
have to render before assigning it to the view. Instead you can
do the following (note, extremely simplified use case):

```
$view->assign('variable', 'value of my variable');
$view->assign('code', 'My variable: {variable}');

```

And in the template:

```
{code -> f:inline()}

```

Which outputs:

```
My variable: value of my variable

```

You can use this to pass smaller and dynamic pieces of Fluid code
to templates, as an alternative to creating new partial templates.

Go to the source code of this ViewHelper: [InlineViewHelper.php (GitHub)](https://github.com/TYPO3/Fluid/blob/main/src/ViewHelpers/InlineViewHelper.php).

## Arguments of the `<f:inline>` ViewHelper

-   **code**

    -   *Type:* string

    Fluid code to be rendered as if it were part of the template rendering it. Can be passed as inline argument or tag content
