---
title: "parseFunc"
manual: "TypoScript Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3tsref:guide-function-parsefunc@main"
source: "Guide/TypoScriptFunctions/ParseFunc/Index.rst"
modified: "2026-09-15T19:22:01+00:00"
---

# parseFunc

This function parses the main part of the content, i.e., the content which has
been entered in the Rich Text Editor. The function is responsible for the fact
that the content is not rendered exactly as it was entered in the RTE. Some
default parsing rules are implemented in the core, like parsing link tags via
[typolink](https://docs.typo3.org/permalink/t3tsref:typolink@main) function.

You can also use `parseFunc` for your own processing. In the following
example, every occurrence of "COMP" is replaced by "My company name":

**EXT:site_package/Configuration/Sets/Main/setup.typoscript**

```typoscript
page.stdWrap.parseFunc.short {
  COMP = My company name
}

```

The various possibilities of changing the default behavior can be found by
using the TypoScript object browser. All possibilities of how parseFunc can
alter the rendering can be found in the
[TypoScript Reference](https://docs.typo3.org/permalink/t3tsref:parsefunc@main).
