Skip to content

Commit

Permalink
Fix #113 - Allow Markdown Syntax for before_input and after_input
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoshino committed Mar 12, 2024
1 parent 1987d41 commit eef1d0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
/>
{:else}
{#if beforeInputLabel}
<div role="none" class="before-input">{beforeInputLabel}</div>
<div role="none" class="before-input">{@html marked.parse(beforeInputLabel)}</div>
{/if}
{#if prefix}
<div role="none" class="prefix">{prefix}</div>
Expand All @@ -233,7 +233,7 @@
<div role="none" class="suffix">{suffix}</div>
{/if}
{#if afterInputLabel}
<div role="none" class="after-input">{afterInputLabel}</div>
<div role="none" class="after-input">{@html marked.parse(afterInputLabel)}</div>
{/if}
{/if}
</div>
Expand Down

0 comments on commit eef1d0f

Please sign in to comment.