Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit c1fcb10

Browse files
committed
docs: Change reference to search.md
1 parent 743fee2 commit c1fcb10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/etapi/etapi.openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ paths:
4848
- name: search
4949
in: query
5050
required: true
51-
description: search query string as described in https://github.com/zadam/trilium/wiki/Search
51+
description: search query string as described in https://github.com/TriliumNext/Docs/blob/main/Wiki/search.md
5252
schema:
5353
type: string
5454
examples:

src/public/app/services/frontend_script_api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function FrontendScriptApi(startNote, currentNote, originEntity = null, $contain
249249

250250
/**
251251
* This is a powerful search method - you can search by attributes and their values, e.g.:
252-
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
252+
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/TriliumNext/Docs/blob/main/Wiki/search.md
253253
*
254254
* @method
255255
* @param {string} searchString
@@ -261,7 +261,7 @@ function FrontendScriptApi(startNote, currentNote, originEntity = null, $contain
261261

262262
/**
263263
* This is a powerful search method - you can search by attributes and their values, e.g.:
264-
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
264+
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/TriliumNext/Docs/blob/main/Wiki/search.md
265265
*
266266
* @method
267267
* @param {string} searchString

src/services/backend_script_api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ interface Api {
114114

115115
/**
116116
* This is a powerful search method - you can search by attributes and their values, e.g.:
117-
* "#dateModified =* MONTH AND #log". See {@link https://github.com/zadam/trilium/wiki/Search} for full documentation for all options
117+
* "#dateModified =* MONTH AND #log". See {@link https://github.com/TriliumNext/Docs/blob/main/Wiki/search.md} for full documentation for all options
118118
*/
119119
searchForNotes(query: string, searchParams: SearchParams): BNote[];
120120

121121
/**
122122
* This is a powerful search method - you can search by attributes and their values, e.g.:
123-
* "#dateModified =* MONTH AND #log". See {@link https://github.com/zadam/trilium/wiki/Search} for full documentation for all options
123+
* "#dateModified =* MONTH AND #log". See {@link https://github.com/TriliumNext/Docs/blob/main/Wiki/search.md} for full documentation for all options
124124
*/
125125
searchForNote(query: string, searchParams: SearchParams): BNote | null;
126126

0 commit comments

Comments
 (0)