mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
---
|
|
|
|
import MarkdownCode from './MarkdownCode.astro';
|
|
|
|
const isDev = import.meta.env.DEV;
|
|
---
|
|
|
|
{
|
|
isDev && (
|
|
<h1 class="text-red">
|
|
don't use h1 in markdown. use frontmatter <MarkdownCode>title</MarkdownCode> instead
|
|
</h1>
|
|
)
|
|
}
|