mirror of
https://github.com/saicaca/fuwari.git
synced 2026-01-11 06:42:53 +01:00
fix: missing toc if base url is set (#550)
* fix missing toc if base url is set * sort imports
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
import type { MarkdownHeading } from "astro";
|
import type { MarkdownHeading } from "astro";
|
||||||
import { siteConfig } from "../../config";
|
import { siteConfig } from "../../config";
|
||||||
|
import { url } from "../../utils/url-utils";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
class?: string;
|
class?: string;
|
||||||
@@ -15,8 +16,7 @@ for (const heading of headings) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const className = Astro.props.class;
|
const className = Astro.props.class;
|
||||||
|
const isPostsRoute = Astro.url.pathname.startsWith(url("/posts/"));
|
||||||
const isPostsRoute = Astro.url.pathname.startsWith("/posts/");
|
|
||||||
|
|
||||||
const removeTailingHash = (text: string) => {
|
const removeTailingHash = (text: string) => {
|
||||||
let lastIndexOfHash = text.lastIndexOf("#");
|
let lastIndexOfHash = text.lastIndexOf("#");
|
||||||
|
|||||||
Reference in New Issue
Block a user