this post was submitted on 07 Jul 2024
6 points (71.4% liked)
Programming
17349 readers
356 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You'd save it to the database in the same field as the rest of the text. You don't store the positions or anything like that - you'd store the text with HTML and have the front end render it as expected.
For instance, the database could have the following text:
And the front end just renders HTML.
Alternatively, you could store Markdown syntax if you're hesitant to allow HTML.
EDIT: as always, if you store raw HTML, don't forget to sanitize it.
So long as you have robust data sanitization on the backend to prevent XSS and HTML injection attacks...
If you can get away with just using Markdown, you should definitely use that instead of full HTML.
Fuck me, I hope you don't just render whatever HTML the user gave you!
Of course not lol. The CMS I usually use stores it as HTML in the database, so I have a go-to HTML sanitization plugin with a tag whitelist. I wish it used markdown or something similar under the hood instead, but it is what it is.