Attention
TYPO3 v7 has reached its end-of-life November 30th, 2018 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.
There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.
makelinks¶
makelinks substitutes all appearances of web addresses or mail links with a real link-tag. Web addresses and mail links must be contained in the text in the following form:
https://example.org
mailto:name@example.org
Property
http.extTarget
Data type
target
Description
The target of the link.
Default
_top
Property
http.ATagBeforeWrap
Data type
boolean
Description
If set, the link is first wrapped with http.wrap and then the <A>-tag.
Default
0
Property
http.keep
Data type
list: "scheme","path","query"
Description
As default the link-text will be the full domain-name of the link.
Example:
With the URL https://example.org/test/doc.php?id=3
in our text we will
get the following results:
http.keep = "": example.org
http.keep = "scheme": https://example.org
http.keep = "scheme,path": https://example.org/test/doc.php
http.keep = "scheme,path,query": https://example.org/test/doc.php?id=3
Property
http.ATagParams
Data type
<A>-params /stdWrap
Description
Additional parameters
Example:
http.ATagParams = class="board"
Property
mailto.ATagBeforeWrap
Data type
boolean
Description
If set, the link is first wrapped with mailto .wrap and then the <A>-tag.
Default
0
Property
mailto.ATagParams
Data type
<A>-params /stdWrap
Description
Additional parameters
Example:
mailto.ATagParams = class="board"
[tsref:->makelinks]