mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
1cb6ae39c8
For #939 - Adds way to check if current language is RTL via config system. - Made TinyMCE default direction be based on current language text direction. - Fixed bullet points to be RTL compatible. - Set page content body to have direction based on content.
12 lines
292 B
PHP
12 lines
292 B
PHP
<div dir="auto">
|
|
|
|
<h1 class="break-text" v-pre id="bkmrk-page-title">{{$page->name}}</h1>
|
|
|
|
<div style="clear:left;"></div>
|
|
|
|
@if (isset($diff) && $diff)
|
|
{!! $diff !!}
|
|
@else
|
|
{!! isset($page->renderedHTML) ? $page->renderedHTML : $page->html !!}
|
|
@endif
|
|
</div> |