How to store MD

Im building a CRM/Task management tool, i want users to be able to write MD descriptions for tasks how do i go about storing this in the db (mysql & prisma)
2 Replies
jingleberry
jingleberry3y ago
Markdown is just string. So use a string column
Sybatron
Sybatron3y ago
Store it as string and parse to html later Custom regex parser or something like marked should do the job

Did you find this page helpful?