From 5bc74ac762926b4310569963e30cbf85f265dbcb Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Thu, 13 Mar 2025 23:44:19 +0000 Subject: Run summarize top statuses --- unhtml.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'unhtml.lisp') diff --git a/unhtml.lisp b/unhtml.lisp index 18bab64..6579203 100644 --- a/unhtml.lisp +++ b/unhtml.lisp @@ -10,6 +10,9 @@ (loop for c across (plump:child-elements dom) if (node-has-text c) collect c )) -(defun text-excerpt (content length) +(defun text-excerpt (content excerpt-length) (let ((text-nodes (text-children (plump:parse content)))) - (plump:text (first text-nodes)))) + (if text-nodes + (let ((text (plump:text (first text-nodes)))) + (subseq text 0 (min excerpt-length (length text)))) + nil))) -- cgit v1.2.3