mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
15c39c1976
Removes old awkward JS translations endpoint. New system still a little akward in code but not now in process. Also extracted out page editors into their own files. Closes #1258
42 lines
1.8 KiB
PHP
42 lines
1.8 KiB
PHP
<div v-pre id="markdown-editor" markdown-editor class="flex-fill flex code-fill">
|
|
@exposeTranslations([
|
|
'errors.image_upload_error',
|
|
])
|
|
|
|
<div class="markdown-editor-wrap active">
|
|
<div class="editor-toolbar">
|
|
<span class="float left editor-toolbar-label">{{ trans('entities.pages_md_editor') }}</span>
|
|
<div class="float right buttons">
|
|
@if(config('services.drawio'))
|
|
<button class="text-button" type="button" data-action="insertDrawing">@icon('drawing'){{ trans('entities.pages_md_insert_drawing') }}</button>
|
|
| 
|
|
@endif
|
|
<button class="text-button" type="button" data-action="insertImage">@icon('image'){{ trans('entities.pages_md_insert_image') }}</button>
|
|
|
|
|
<button class="text-button" type="button" data-action="insertLink">@icon('link'){{ trans('entities.pages_md_insert_link') }}</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div markdown-input class="flex flex-fill">
|
|
<textarea id="markdown-editor-input" name="markdown" rows="5"
|
|
@if($errors->has('markdown')) class="text-neg" @endif>@if(isset($model) || old('markdown')){{htmlspecialchars( old('markdown') ? old('markdown') : ($model->markdown === '' ? $model->html : $model->markdown))}}@endif</textarea>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="markdown-editor-wrap">
|
|
<div class="editor-toolbar">
|
|
<div class="editor-toolbar-label">{{ trans('entities.pages_md_preview') }}</div>
|
|
</div>
|
|
<div class="markdown-display page-content">
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="html"/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@if($errors->has('markdown'))
|
|
<div class="text-neg text-small">{{ $errors->first('markdown') }}</div>
|
|
@endif |