Merge pull request #13805 from gitgrimbo/more_line_based_markdown

Use parseEscapedMarkedownInline for more views
This commit is contained in:
snipe 2024-02-05 17:19:41 +00:00 committed by GitHub
commit 8316db9702
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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

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