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> </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

@ -309,7 +309,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