blob: 64f41ce24f72f8931b226b8500b5203d1bb5e9fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
import { Markdown } from 'astro/components';
import MainLayout from '~/layouts/MainLayout.astro';
const [content] = Astro.fetchContent('~/pages/reference/renderer-reference.md');
---
<MainLayout content="{content}">
<Markdown>
> Esta página todavía no está disponible en Español. Se muestra la versión en inglés.
</Markdown>
{content.astro.html}
</MainLayout>
|