Saving contents of the WMD Editor Control

后端 未结 2 1158
后悔当初
后悔当初 2021-02-14 03:33

I\'m trying to implement the WMD editor used on StackOverflow to create some basic Wiki-style functionality. I\'m up to the point where it\'s time to save to the database, but

2条回答
  •  忘了有多久
    2021-02-14 04:14

    I would suggest saving the exact entered text to the database, so editing will work with the original markdown or HTML.

    When you retrieve the text for display, you parse it on the server side and convert to HTML where necessary

    [Edit] At comment: You seem to have a way of parsing and converting to HTML already, if I understand your question correctly. Here you talk about the produced HTML.

    If I save the produced HTML then I can retrieve and display it correctly, but on re-edit I'm faced with editing HTML, not Markdown

提交回复
热议问题