fix: missing toc if base url is set (#550)

* fix missing toc if base url is set

* sort imports
This commit is contained in:
adaxiik
2025-07-27 06:13:17 +02:00
committed by GitHub
parent a7a053e42a
commit 2b9e9ff903

View File

@@ -1,6 +1,7 @@
---
import type { MarkdownHeading } from "astro";
import { siteConfig } from "../../config";
import { url } from "../../utils/url-utils";
interface Props {
class?: string;
@@ -15,8 +16,7 @@ for (const heading of headings) {
}
const className = Astro.props.class;
const isPostsRoute = Astro.url.pathname.startsWith("/posts/");
const isPostsRoute = Astro.url.pathname.startsWith(url("/posts/"));
const removeTailingHash = (text: string) => {
let lastIndexOfHash = text.lastIndexOf("#");