1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Started playing with prosemirror

- Got base setup together with WYSIWYG/Markdown switching, where HTML is
  the base content format.
- Added some testing routes/views for initial development.
- Added some dev npm tasks to support editor-specific actions.
This commit is contained in:
Dan Brown
2021-11-26 15:05:06 +00:00
parent c3f7b39a0f
commit 27f9e8e4bd
6 changed files with 551 additions and 0 deletions

View File

@ -38,6 +38,8 @@ use Illuminate\View\Middleware\ShareErrorsFromSession;
Route::get('/status', [StatusController::class, 'show']);
Route::get('/robots.txt', [HomeController::class, 'robots']);
Route::view('/editor-test', 'editor-test');
// Authenticated routes...
Route::middleware('auth')->group(function () {