Charlie, you are a gentleman, and a patient one at that.
Here is a link to the page I import with my newsletter program. (I will delete the link later today)
link removed
Depending on when it's viewed, you will see some say [... more] at the end, and some don't. That is the part I would like to have a link to the post.
I attached the unedited file. I will delete that later, too.
file removed
My wife will concur on my patience. 🙂
As for your code, here's my proposal: replace the final lines (starting with "<!--- Set output to 200 characters, full words only --->">) with this chunk instead. I've simply moved a couple of your puzzle pieces around, and tweaked another couple, hoping it gets your desired result. There are of course many ways to accomplish a task, and there are still further improvements/refinements one could propose. But let's see if this works for your current need/challenge.
Of course, I can't test the code, but you can. (And with a good editor you can easily do an "undo" to remove it all and revert to what you had, if somehow it doesn't work and you don't want to debug it.) And I see also that while I was doing that and about to post this, BKBK offered his own idea. I will send this along and let you consider both.
<!--- Set output to 200 characters, full words only --->
<cfset trimmedQuote = TopicPost.post>
<cfif len(TopicPost.post) gt 200>
<cfset trimmedQuote = fullLeft(TopicPost.post, 200)>
<cfset trimmedQuote &= " [... more]">
</cfif>
<!--- Strip paragraph format sent from dataabse --->
<!--- example to strip all tags except B --->
<p style="font-size:14px; line-height:1.5em; font-family:Verdana, Geneva, sans-serif; color:##50524b;">
<cfoutput>#tagStripper(trimmedQuote,'strip','b')#</cfoutput>
<cfif len(TopicPost.post) gt 200>
<a href="https://www.pathlabtalk.com/forum/index.php?/topic/#tid#-#title_seo#/" style="font-size: 18px; text-decoration: none; color:##417394;"> [... more]</a></div>
</cfif>
</p>
</cfoutput>
</cfloop>
</cfif>