# $field->kirbytextinline()

Converts the field content from inline Markdown/Kirbytext to valid HTML

****

- Source: <https://github.com/getkirby/kirby/tree/5.5.3/config/methods.php#L435>

****

```php
$field->kirbytextinline(array $options = [ ]): Kirby\Content\Field
```

## Parameters

| Name | Type | Default | Description |
| ---- | ---- | ---- | ---- |
| `$options` | `array` | `[ ]` | – |

## Return type

`Kirby\Content\Field`

This method modifies the existing `$field` object it is applied to and returns it again.

## Aliases

You can use the following aliases for this field method in your template:

- `$field->kti(…)`

## Examples

```php
<?= $page->subtitle()->kirbytextinline() ?>
```