From 34b3ef0d44c8731437560c8b3f59c86b13cbe2a2 Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Mon, 24 Nov 2025 17:41:41 +0100 Subject: [PATCH] Fix URLs that get redirected --- docs/.vitepress/config.mts | 2 +- docs/examples.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 7f398ba..a1e44e7 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -37,7 +37,7 @@ export default withMermaid({ // https://vitepress.dev/reference/default-theme-config nav: [ { text: 'Guide', link: '/guide/introduction', activeMatch: '/guide' }, - { text: 'API', link: '/api', activeMatch: '/api' }, + { text: 'API', link: '/api/', activeMatch: '/api' }, { text: 'LLMs', link: '/llms', activeMatch: '/llms' }, { text: 'Examples', link: '/examples', activeMatch: '/examples' }, { text: 'Sponsors', link: '/#sponsors', activeMatch: '/#sponsors' }, diff --git a/docs/examples.md b/docs/examples.md index 7c65313..68ce4ff 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -9,37 +9,37 @@ hero: features: - title: Metadata extraction details: Extract various metadata from an input media file. - link: /examples/metadata-extraction + link: /examples/metadata-extraction/ target: _self icon: src: /mingcute--file-info-line.svg - title: Thumbnail generation details: Generate multiple small thumbnails for a video track. - link: /examples/thumbnail-generation + link: /examples/thumbnail-generation/ target: _self icon: src: /mingcute--photo-album-line.svg - title: Media player (advanced) details: "A full video & audio media player, implemented from scratch with Mediabunny, with microsecond playback accuracy." - link: /examples/media-player + link: /examples/media-player/ target: _self icon: src: /mingcute--video-line.svg - title: File compression details: Convert an input file to a highly-compressed MP4 file. - link: /examples/file-compression + link: /examples/file-compression/ target: _self icon: src: /mingcute--file-zip-line.svg - title: Procedural video generation details: Generate a video file as fast as the hardware allows. - link: /examples/procedural-generation + link: /examples/procedural-generation/ target: _self icon: src: /mingcute--magic-3-line.svg - title: Live recording & streaming details: Record a video from live sources and stream it to a video element. - link: /examples/live-recording + link: /examples/live-recording/ target: _self icon: src: /mingcute--microphone-line.svg