build short uri

This commit is contained in:
yggverse 2025-02-22 01:48:06 +02:00
parent 2532b3e11c
commit a5e345eaa8
2 changed files with 20 additions and 1 deletions

View file

@ -89,6 +89,14 @@ impl Item {
// Getters
pub fn to_uri(&self, directory: &str) -> String {
self.path
.to_str()
.unwrap()
.replace(directory, "")
.replace("/", "")
}
/* @TODO implement short links handle without slash
pub fn alias(&self, relative: &str) -> String {} */
}