textpattern / textpattern.github.io

Textpattern CMS user documentation.
https://docs.textpattern.com
GNU General Public License v2.0
15 stars 17 forks source link

page: /tags/excerpt #211

Open butterp1 opened 8 months ago

butterp1 commented 8 months ago

URLs

Explanation of immediate task

The trim regex given as an example to trim body for excerpt seems to trip up if textile is enable in the body field (prepending the truncated text with p>), no matter what the escape attributes. I have better luck with <txp:body escape="tags" trim="/^(<[^>]*>)*((?:\w+\W+){35})\w.*$/s" replace="$2&hellip;" />, which excludes initial tags.

Resources to support effort

Current to-dos

bloatware commented 8 months ago

Thank you for the report, but I'm not sure textile interferes here. Could you provide more details re the article body content?

butterp1 commented 8 months ago

Hi, I've just reinstated the trim regex from the TXP docs and made a test article using a couple of paragraphs of plain text. Screenshots attached of front and back end, firstly with Textile on then with it off.

I've only seen this happen on a couple of older sites, so may be something in the config or hosting conditions or a plugin.

I've tried the regex on the regex101 site and it removes the opening bracket from an opening p tag, so I'm guessing the regex trim happens before the transform / escape?

LEAVE TEXT UNTOUCHED

Screen Shot 2024-01-31 at 9 59 48 am

TEXTILE

Screen Shot 2024-01-31 at 9 58 33 am
bloatware commented 8 months ago

Thank you. Have you also set escape="tags" attribute before trim? Unless php strip_tags() function is somehow disabled on your server (see diagnostics), it should have removed all html tags prior to trimming.

This said, the example regex might be a bit loose, indeed.