Here's an overview of some of the common TYPO3 tags that you can use in a content field:
To make links to internal and external pages, please use the <link> tag. For internal links, this ensures that links to missing pages are not rendered as hyperlinks. In all cases, it allows the TYPO3 templating engine to render the links in the correct style.
<typolist>
<link [num]> - links to a page within TYPO3 with the given page ID. You can determine the page ID by hovering over a page icon in the page tree.
<link [url]> - simply enter an external URL to link to other websites.
<link [num/url] [target]> - useful for opening pages in a new browser screen: <link www.google.com _blank>
</typolist>
Use the <link> tag just like a HTML HREF tag:
<link 186>click here!</link>
Will be rendered as:
To make bulleted lists, use the >typolist< tag. Inside this tag, each line gets rendered as a separate bullet. So:
<typolist>
Line 1
Line 2
Line 3
</typolist>
Will be rendered as:
<typolist>
Line 1
Line 2
Line 3
</typolist>
You can pass a 'type' value to the typolist tag to render different kinds of bullets. Here's <typolist type="1"> list:
<typolist type="1">
Line 1
Line 2
Line 3
</typolist>