feat - added callout qoute collapsible setting;

Feat - added show full suggestion setting;
This commit is contained in:
Christian Jay Tautu-an
2026-01-31 13:34:26 +08:00
parent 0ac214c10e
commit 30b9a60baf
10 changed files with 231 additions and 38 deletions

View File

@@ -32,6 +32,7 @@ export default class LocalBibleRefPlugin extends Plugin {
const calloutSettings = {
type: CalloutType.Quote,
linkToPassage: true,
collapsible: true,
};
this.settings ??= {
@@ -41,6 +42,7 @@ export default class LocalBibleRefPlugin extends Plugin {
bibleFormat: BibleFormat.LocalBibleRef,
quote: quoteSettings,
callout: calloutSettings,
fullSuggestion: true
};
if (!this.settings.quote) this.settings.quote = quoteSettings;