forked from Myriad-Dreamin/shiroa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support to search across pages (Myriad-Dreamin#99)
* dev: create folder * dev: support it * build: update cargo.lock
- Loading branch information
1 parent
fb28ad6
commit 8402d83
Showing
11 changed files
with
319 additions
and
41 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Submodule artifacts
updated
4 files
+2 −0 | NOTES | |
+10 −0 | elasticlunr.min.js | |
+7 −0 | mark.min.js | |
+483 −0 | searcher.js |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pub mod html; | ||
use std::collections::BTreeMap; | ||
|
||
pub use self::html::*; | ||
|
||
pub mod typst; | ||
pub use self::typst::*; | ||
pub mod search; | ||
pub use self::search::*; | ||
|
||
use std::collections::BTreeMap; | ||
pub type DataDict = BTreeMap<String, serde_json::Value>; |
Oops, something went wrong.