Markdown Status Bar

Here you can customize what statistics are displayed on the status bar when editing a markdown note.

{#each statusItems as item, i}
{metricToString(item.metric)} {#if i !== 0} {/if} {#if i !== statusItems.length - 1} {/if}
Metric Counter
Select the counter to display, e.g. words, characters.
Metric Type
Select the type of metric that you want displayed.
Prefix Text
This is the text that is placed before the count.
{ const { value } = e.target; item.prefix = value; await update(statusItems); await plugin.saveSettings(); }} />
Suffix Text
This is the text that is placed after the count.
{ const { value } = e.target; item.suffix = value; await update(statusItems); await plugin.saveSettings(); }} />
{/each}

Alternative Status Bar

Here you can customize what statistics are displayed on the status bar when not editing a markdown file.

{#each altSItems as item, i}
{metricToString(item.metric)} {#if i !== 0} {/if} {#if i !== altSItems.length - 1} {/if}
Metric Counter
Select the counter to display, e.g. words, characters.
Metric Type
Select the type of metric that you want displayed.
Prefix Text
This is the text that is placed before the count.
{ const { value } = e.target; item.prefix = value; await updateAlt(altSItems); await plugin.saveSettings(); }} />
Suffix Text
This is the text that is placed after the count.
{ const { value } = e.target; item.suffix = value; await updateAlt(altSItems); await plugin.saveSettings(); }} />
{/each}