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>
</div>
<div class="col-md-12">
{!! nl2br(e($component->notes)) !!}
{!! nl2br(Helper::parseEscapedMarkedownInline($component->notes)) !!}
</div>
</div>
@endif

View file

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