diff --git a/README.md b/README.md index 6fa3644..272acb4 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,12 @@ ## Features +- [x] Multiple plain text tools +- [ ] Clipboard auto detection +- [ ] Tray icon for quick action + +## Tools list + - [x] Unix Timestamp Converter - [x] Markdown to HTML Converter - [x] HTML Preview @@ -15,11 +21,11 @@ - [x] Text Diff - [x] JSON Formatter - [x] SQL Formatter +- [x] Regex Tester - [ ] JWT Debugger - [ ] Number Base Converter - [ ] URL Encode/Decode - [ ] HTML Entity Encode/Decode -- [ ] Regex Tester ## Installation diff --git a/src/components/Main.tsx b/src/components/Main.tsx index 1848731..9e9b094 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -12,6 +12,7 @@ import DiffText from './diff/TextDiff'; import SqlFormatter from './sql/SqlFormatter'; import JsonFormatter from './json/JsonFormatter'; import QRCodeReader from './qrcode/QrCodeReader'; +import RegexTester from './regex/RegexTester'; const Main = () => { const routes = [ @@ -21,6 +22,12 @@ const Main = () => { name: 'Unix Time Converter', Component: UnixTimestamp, }, + { + icon: , + path: '/regex-tester', + name: 'Regex Tester', + Component: RegexTester, + }, { icon: , path: '/markdown-to-html', diff --git a/src/components/base64/Base64.tsx b/src/components/base64/Base64.tsx index db9fff5..11e2723 100644 --- a/src/components/base64/Base64.tsx +++ b/src/components/base64/Base64.tsx @@ -112,7 +112,7 @@ const Base64 = () => { + +
+ + +
+ + +
+
+ + + +
+