put the code copy button into the markdown processor
This commit is contained in:
parent
7f75bba052
commit
b9accda035
20 changed files with 176 additions and 211 deletions
|
|
@ -7,10 +7,13 @@ export interface Props {
|
|||
frontmatter: {
|
||||
title: string;
|
||||
description?: string;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
const { headings, frontmatter: { title, description } } = Astro.props;
|
||||
const {
|
||||
headings,
|
||||
frontmatter: { title, description },
|
||||
} = Astro.props;
|
||||
---
|
||||
<GuideLayout title={title} description={description ?? ""} headings={headings}>
|
||||
<slot/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue