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
Markdown is just string. So use a string column
Store it as string and parse to html later
Custom regex parser or something like marked should do the job