From c263b6ad76c350d698f34d567d9208180a51f6f2 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 11 Jul 2024 20:16:09 +0300 Subject: [PATCH] text-to-hex: Move to encoding category --- src/lib/tools.js | 12 +++++------- .../text-to-hex/+page.svelte | 0 2 files changed, 5 insertions(+), 7 deletions(-) rename src/routes/{plain-text => encoding}/text-to-hex/+page.svelte (100%) diff --git a/src/lib/tools.js b/src/lib/tools.js index eef4991..dc59bee 100644 --- a/src/lib/tools.js +++ b/src/lib/tools.js @@ -58,17 +58,10 @@ export default { title: "Lorem Ipsum Generator", icon: TextLong }, - { path: "/unicode-analyzer", title: "Analyze Unicode text", icon: Unicode - }, - - { - path: "/plain-text/text-to-hex", - title: "Text to Hex", - icon: Hexadecimal } ], @@ -184,6 +177,11 @@ export default { icon: SlashForward, iconFlipHorizontally: true }, + { + path: "/encoding/text-to-hex", + title: "Text to Hex", + icon: Hexadecimal + }, { path: "/morse-code", title: "Morse Code", diff --git a/src/routes/plain-text/text-to-hex/+page.svelte b/src/routes/encoding/text-to-hex/+page.svelte similarity index 100% rename from src/routes/plain-text/text-to-hex/+page.svelte rename to src/routes/encoding/text-to-hex/+page.svelte