From b9620e77cafa8da9ca5d91dbd1784fcfedece32d Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Tue, 1 Oct 2024 13:19:20 +0300 Subject: [PATCH] docs: update source references Signed-off-by: Emmanuel Ferdman --- docs/src/internal-functions/contribute.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/internal-functions/contribute.md b/docs/src/internal-functions/contribute.md index 3a14e794..ffc7abfe 100644 --- a/docs/src/internal-functions/contribute.md +++ b/docs/src/internal-functions/contribute.md @@ -12,7 +12,7 @@ Internal variables / functions are sorted by modules. Each module has a dedicate Let's take the [date module](https://github.com/SilentVoid13/Templater/tree/master/src/InternalTemplates/date) as an example. -It contains an [InternalModuleDate](https://github.com/SilentVoid13/Templater/blob/master/src/InternalTemplates/date/InternalModuleDate.ts) file where all our internal date's related variables and functions are defined and registered: +It contains an [InternalModuleDate](https://github.com/SilentVoid13/Templater/blob/master/src/core/functions/internal_functions/date/InternalModuleDate.ts) file where all our internal date's related variables and functions are defined and registered: ```typescript export class InternalModuleDate extends InternalModule { @@ -49,7 +49,7 @@ export class InternalModuleDate extends InternalModule { } ``` -Every module extends the [InternalModule](https://github.com/SilentVoid13/Templater/blob/master/src/InternalTemplates/InternalModule.ts) abstract class, which means they contain the following attributes and methods: +Every module extends the [InternalModule](https://github.com/SilentVoid13/Templater/blob/master/src/core/functions/internal_functions/InternalModule.ts) abstract class, which means they contain the following attributes and methods: - `this.app` attribute: the Obsidian API `App` object. - `this.file` attribute: The destination file where the template will be inserted.