Is there anyway to make non-tech folks friendly editor? #2580
-
|
Just discovered the project, really cool! I see there is built in editor where for dev it's very comfortable and helpful to use. Although, the use case scenario I'm thinking about is that, if I generated a slide dec on my web app, but I'd like end users who are not familiar with markdown/coding at all, to be able to edit and create their own version, is there some existing built in or work already exists, to provuide a editor interface where they can simply:
not sure if that's possible. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Slidev is fundamentally markdown-based, so there is no built-in WYSIWYG click-to-edit interface like PowerPoint. The built-in editor is a code editor, not a visual one. For your use case of letting non-technical users edit slides visually, you would probably need to build a custom editor layer on top of Slidev that translates visual edits back to markdown. That is a pretty big undertaking though. You might want to look at something like reveal.js with a visual editor plugin, or consider using Slidev for the initial creation and then exporting to PPTX for end users to edit in PowerPoint/Google Slides. |
Beta Was this translation helpful? Give feedback.
Slidev is fundamentally markdown-based, so there is no built-in WYSIWYG click-to-edit interface like PowerPoint. The built-in editor is a code editor, not a visual one. For your use case of letting non-technical users edit slides visually, you would probably need to build a custom editor layer on top of Slidev that translates visual edits back to markdown. That is a pretty big undertaking though. You might want to look at something like reveal.js with a visual editor plugin, or consider using Slidev for the initial creation and then exporting to PPTX for end users to edit in PowerPoint/Google Slides.