DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

HTML contentΒΆ

HTML content is weighted by the indexing engine in this order:

  1. <title>-data
  2. <meta-keywords>
  3. <meta-description>
  4. <body>

In addition you can insert markers as HTML comments which define which part of the body-text to include or exclude in the indexing:

The marker is <!--TYPO3SEARCH\_begin--> or <!--TYPO3SEARCH\_end-->.

Rules:

  1. If there is no marker at all, everything is included.
  2. If the first found marker is an "end" marker, the previous content until that point is included and the preceeding code until next "begin" marker is excluded.
  3. If the first found marker is a "begin" marker, the previous content until that point is excluded and preceeding content until next "end" marker is included.
  4. If there are multiple marker pairs in HTML, content from in between all pairs is included.