WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

120

Example: https://poal.co/s/technology/506733/e18d9a91-43cc-4eb1-aef8-4aeba532705f#cmnts

Notce the comment looks like a giant run-on sentance. Once expanded the bullet points render, showing it's not a big block of text but a list.

Example: https://poal.co/s/technology/506733/e18d9a91-43cc-4eb1-aef8-4aeba532705f#cmnts Notce the comment looks like a giant run-on sentance. Once expanded the bullet points render, showing it's not a big block of text but a list.

(post is archived)

[–] [deleted] 1 pt 3y

Not sure how it works but you could always limit to a certain number of lines, retaining the formatting

comment = '...'
max_lines = 8
truncated = '\n'.join(comment.split('\n')[:max_lines])
[–] 0 pt 3y

I'm using a different way.