In your last Changelog you mention that it is now possible to default to “no title”.
Because of the code bellow, I assumed there should be a new setting for it in the Settings plugin.
new Setting(settingDiv)
.setName(t("No Admonition Title by Default"))
.setDesc(
createFragment((e) => {
e.createSpan({
text: t("The admonition will have no title unless ")
});
e.createEl("code", { text: "title" });
e.createSpan({ text: t(" is explicitly provided.") });
})
)
.addToggle((t) => {
t.setValue(this.noTitle).onChange((v) => (this.noTitle = v));
});
This is the lower part of what I see: