# kirbytextinline()

Parses KirbyTags and inline Markdown in the given string.

****

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

****

```php
kirbytextinline(string|null $text = null, array $options = [ ]): string
```

## Parameters

| Name | Type | Default | Description |
| ---- | ---- | ---- | ---- |
| `$text` | `string` or `null` | `null` | – |
| `$options` | `array` | `[ ]` | – |

## Return type

`string`

## Alias

`kti()`

## Examples

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