-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robonau
authored and
Robonau
committed
Sep 18, 2024
1 parent
2184cfc
commit 5c1b3e2
Showing
6 changed files
with
376 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!-- | ||
Copyright (c) 2024 Contributors to the Suwayomi project | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
--> | ||
|
||
<script lang="ts"> | ||
import ModalTemplate from '$lib/components/ModalTemplate.svelte'; | ||
</script> | ||
|
||
<ModalTemplate title="Library Specific Search Help"> | ||
<p class="whitespace-pre-wrap"> | ||
{@html `<h2>Basic Info:</h2>specific search is based on the style of searching that booru sites often support | ||
regular title search and specific search is separated by an "@" | ||
specific search does not respect Escape Characters. | ||
you can't use "@" in search at all | ||
you cant use "{", "}" or ":" in the specific search | ||
<h2>Searching:</h2> | ||
@ title:isekai title:life | ||
title contains both isekai and life | ||
@ -title:isekai | ||
title does not contain isekai | ||
@ {title:isekai title:life | title:space} | ||
title contains either isekai AND life, OR space | ||
<h2>Metatags:</h2> | ||
title:isekai | ||
sorthand t:isekai | ||
search for manga with isekai in the title | ||
description:space | ||
sorthand d:space | ||
search for manga with space in the description | ||
genre:action | ||
sorthand g:action | ||
search for manga with action in the genres | ||
this can be a partial match so "actio" would also work | ||
artist:Kwon | ||
sorthand a:Kwon | ||
search for manga with Kwon in the artist name | ||
author:Ingijagga | ||
sorthand au:Ingijagga | ||
search for manga with Ingijagga in the author name | ||
source:mangadex | ||
sorthand s:mangadex | ||
search for manga with mangadex in the source name | ||
status:completed | ||
sorthand st:completed | ||
search for manga with completed in the status | ||
`} | ||
</p> | ||
</ModalTemplate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.