About us
--
Simplify searching & downloading
-From b0bbb98927cf402e365795482099357529b1c5d6 Mon Sep 17 00:00:00 2001 From: Vxrtrauter <101264710+Vxrtrauter@users.noreply.github.com> Date: Sat, 4 Apr 2026 04:52:40 +0200 Subject: [PATCH] Convert docs to single-page tabs and update styles Merge API and About pages into a single SPA-style index: removed docs/about.html and docs/api.html and moved their content into docs/index.html as tabbed sections (start, api, docs, notfound). Add client-side routing and history handling via a new script to support deep links and pushState, plus a Netlify-style docs/_redirects rule to serve index for all routes. Update styles in docs/main.css to target the new tab UI (.tab, .tablinks, .logo-text) and add styles for the 404 view. Minor markup and layout tweaks (images, buttons, response examples) to match the consolidated page. --- docs/_redirects | 1 + docs/about.html | 37 ----------- docs/api.html | 89 -------------------------- docs/index.html | 166 +++++++++++++++++++++++++++++++++++++++++++----- docs/main.css | 48 +++++++++++--- 5 files changed, 190 insertions(+), 151 deletions(-) create mode 100644 docs/_redirects delete mode 100644 docs/about.html delete mode 100644 docs/api.html diff --git a/docs/_redirects b/docs/_redirects new file mode 100644 index 0000000..f824337 --- /dev/null +++ b/docs/_redirects @@ -0,0 +1 @@ +/* /index.html 200 \ No newline at end of file diff --git a/docs/about.html b/docs/about.html deleted file mode 100644 index c923b1c..0000000 --- a/docs/about.html +++ /dev/null @@ -1,37 +0,0 @@ - - -
- - - -Simplify searching & downloading
-This API allows you to search for posts on rutracker.
- -https://api.michijackson.xyz/
-GET/search?q={query}
- -Parameter
-Type
-Required
-Description
-q
-String
-True
-Search query
-GET api.michijackson.xyz/search?q=keks
-{ - "cached": false, - "count": 1, - "data": [ - { - "author": "Viterrson", - "id": 1, - "leechers": 0, - "seeders": 3, - "title": "(Hard - Rock) Keks - Keks - 1983, MP3, 320 kbps", - "url": "https://rutracker.org/forum/viewtopic.php?t=3835559" - } - ], - "query": "keks", - "success": true -}-
+ This API allows you to search for posts on rutracker.
+ +https://api.michijackson.xyz/
+GET/search?q={query}
+ +Parameter
+Type
+Required
+Description
+q
+String
+True
+Search query
+GET api.michijackson.xyz/search?q=keks
+{ + "cached": false, + "count": 1, + "data": [ + { + "author": "Viterrson", + "id": 1, + "leechers": 0, + "seeders": 3, + "title": "(Hard - Rock) Keks - Keks - 1983, MP3, 320 kbps", + "url": "https://rutracker.org/forum/viewtopic.php?t=3835559" + } + ], + "query": "keks", + "success": true + }+
Simplify searching & downloading
+