1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

adding example code to helpers

This commit is contained in:
Martin McKeaveney 2021-02-02 17:43:01 +00:00
parent 711ab8a070
commit e78b9c31c3
3 changed files with 3 additions and 0 deletions

View file

@ -83,6 +83,7 @@
<div class="binding__description"> <div class="binding__description">
{@html helper.description || ''} {@html helper.description || ''}
</div> </div>
<pre>{helper.example}</pre>
</div> </div>
{/each} {/each}
</div> </div>

View file

@ -103,6 +103,7 @@
<div class="description"> <div class="description">
{@html helper.description} {@html helper.description}
</div> </div>
<pre>{helper.example}</pre>
</div> </div>
</li> </li>
{/each} {/each}

View file

@ -7,6 +7,7 @@ export function handlebarsCompletions() {
Object.entries(manifest[key]).map(([helperName, helperConfig]) => ({ Object.entries(manifest[key]).map(([helperName, helperConfig]) => ({
text: helperName, text: helperName,
path: helperName, path: helperName,
example: helperConfig.example,
label: helperName, label: helperName,
displayText: helperName, displayText: helperName,
description: helperConfig.description, description: helperConfig.description,