petits changements

This commit is contained in:
2026-02-24 21:55:09 -05:00
parent 3524862184
commit 978181b27d
4 changed files with 6 additions and 8 deletions

View File

@@ -614,7 +614,6 @@ export default class DateCalcPlugin extends Plugin {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
if (this.settings.debug) console.log("[date-calc] loaded");
new Notice("Date Calc loaded (Live Preview + Reading)");
// Register Live Preview editor extension
this.registerEditorExtension(dateCalcLivePreview(this.app, () => this.settings));

View File

@@ -3,9 +3,8 @@
"name": "Date calculator",
"version": "1.0.0",
"minAppVersion": "0.15.0",
"description": "Demonstrates some of the capabilities of the Obsidian API.",
"author": "Obsidian",
"authorUrl": "https://obsidian.md",
"fundingUrl": "https://obsidian.md/pricing",
"description": "Calculate ages, countdowns, and date differences dynamically in your notes using inline code or fenced blocks.",
"author": "Olivier Legendre",
"authorUrl": "https://github.com/thelegend09",
"isDesktopOnly": false
}

View File

@@ -1,7 +1,7 @@
{
"name": "obsidian-sample-plugin",
"name": "date-calculator",
"version": "1.0.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"description": "Calculate ages, countdowns, and date differences dynamically in your notes using inline code or fenced blocks.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",

View File

@@ -3,5 +3,5 @@ Date Calc Plugin Styles
*/
.date-calc-inline {
color: var(--text-accent);
/* color: var(--text-accent); */
}