diff --git a/README.md b/README.md index 0ee52a5..b754302 100644 --- a/README.md +++ b/README.md @@ -482,7 +482,7 @@ Set the default collapse type used when setting an admonition collapsible by def ### Add Copy Button -A "Copy Content" button will be added to the top-right corner of the admonition content. +A "Copy Content" button will be added to the top-right corner of the admonition & callout content. ### Parse Titles as Markdown diff --git a/src/settings.ts b/src/settings.ts index cd48955..5acac78 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -252,7 +252,7 @@ export default class AdmonitionSetting extends PluginSettingTab { } new Setting(containerEl) .setName(t("Add Copy Button")) - .setDesc(t("Add a 'copy content' button to admonitions.")) + .setDesc("Add a 'copy content' button to admonitions & callouts.") .addToggle((t) => { t.setValue(this.plugin.data.copyButton); t.onChange(async (v) => { @@ -1002,9 +1002,7 @@ class SettingsModal extends Modal { .setDesc( createFragment((e) => { e.createSpan({ - text: t( - "A copy button will be added to the admonition." - ) + text: "A copy button will be added to the admonition & callout." }); }) )