Use parseEscapedMarkedownInline for more views

This commit is contained in:
gitgrimbo 2023-10-27 15:37:56 +01:00
parent d40a03b4c5
commit d556f0d275
2 changed files with 2 additions and 2 deletions

View file

@ -279,7 +279,7 @@
</strong> </strong>
</div> </div>
<div class="col-md-12"> <div class="col-md-12">
{!! nl2br(e($component->notes)) !!} {!! nl2br(Helper::parseEscapedMarkedownInline($component->notes)) !!}
</div> </div>
</div> </div>
@endif @endif

View file

@ -303,7 +303,7 @@
@if ($model->notes) @if ($model->notes)
<li> <li>
{{ trans('general.notes') }}: {{ trans('general.notes') }}:
{{ $model->notes }} {!! nl2br(Helper::parseEscapedMarkedownInline($model->notes)) !!}
</li> </li>
@endif @endif