This commit is contained in:
2025-10-27 01:11:43 +08:00
parent c7a650cdb7
commit 6a44d5a233
3 changed files with 15 additions and 1 deletions

6
.vscode/setting.json vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"workbench.editorAssociations": {
// "*.md": "vscode.markdown.preview.editor" // 预览打开
"*.md": "default" // 默认打开
}
}

View File

@@ -0,0 +1,8 @@
---
title: 'astro 例子'
tags: ['astro', 'simple', 'template']
---
## astro-simplate-template
astro 是一个非常好的

View File

@@ -47,7 +47,7 @@ const { title = 'Light Code', description = 'A lightweight code editor', lang =
<slot name='header' /> <slot name='header' />
</div> </div>
<main class='p-2 flex-1 overflow-hidden'> <main class='p-2 flex-1 overflow-hidden'>
<div class='markdown-body h-full scrollbar border-gray-200 overflow-auto w-full px-6 py-2 max-w-[800px] border my-4 rounded-md shadow-md'> <div class='markdown-body h-full scrollbar border-gray-200 overflow-auto px-6 py-2 w-[800px] border my-4 rounded-md shadow-md'>
<slot /> <slot />
</div> </div>
</main> </main>