Supported named inline text roles 

A named inline text role marks up a short piece of text inline, in the middle of a sentence. Write the role name surrounded by colons ( :role-name: ), immediately followed — with no space — by the text it applies to, enclosed in backticks. Some roles expect that text to follow a particular syntax, for example a link target, an issue number, or a fully-qualified class name.

In general we support any text roles in reStructuredText that were previously supported by Sphinx. The TYPO3 Documentation Rendering Container also supports the Docutils Standard Text Roles except for :raw: , as that could pose security issues.

The roles below are the ones most commonly used across TYPO3 documentation that are not already covered on their own page.

:abbr: 

Marks a piece of text as an abbreviation or acronym. Write the abbreviation followed by its expansion in parentheses; the expansion is shown as a tooltip on hover and is not printed inline.

:abbr:`LIFO (last-in, first-out)`
Copied!
How it looks:
LIFO

:path: 

Refers to a directory or folder path, as opposed to a specific file. Use :file: instead when the path ends in a file name.

The extension stores its data in :path:`public/fileadmin`.
Copied!
How it looks:
The extension stores its data in public/fileadmin.

:file: 

Refers to a specific file, including its name and, if helpful, its path. Use :path: instead when referring to a directory rather than a single file.

Edit :file:`config/system/settings.php` to change the setting.
Copied!
How it looks:
Edit config/system/settings.php to change the setting.

:issue: 

Links to an issue on TYPO3 Forge by its number. By default the link text is forge#<number>; pass a custom link text before the number in angle brackets to show different text instead.

See also :issue:`102056` or :issue:`this issue <99508>`.
Copied!
How it looks:
See also forge#102056 or this issue.

More text roles, documented on their own pages 

A few text roles are common enough, or involved enough, to have a full page to themselves rather than a short entry here: