It is used, for example in the backend.html template used to generate the RSS feeds for SPIP-published content.
This filter transforms links into absolute links, substitute in any available HTML entity codes, and escapes any HTML tags.
For example, a #DESCRIPTIF
tag which normally returns the following HTML source:
<p><strong>William Shakespeare</strong> naquit à Stratford-sur-Avon, <span class='spip_document_164 spip_documents spip_documents_center' ><img src='IMG/png/maison-2.png' width="68" height="43" alt="" /></span> dans une maison sous les tuiles de laquelle était cachée...</p>
will now return, after the filter has been applied:
<p><strong>William Shakespeare</strong> naquit à Stratford-sur-Avon, <span class='spip_document_164 spip_documents spip_documents_center' >
<img src='http://www.domaine.tld/IMG/png/maison-2.png' width="68" height="43" alt="" /></span> dans une maison sous les tuiles de laquelle était cachée...</p>