diff options
author | 2023-08-15 22:21:05 +0000 | |
---|---|---|
committer | 2023-08-15 22:21:05 +0000 | |
commit | 0b59bc944b18913bd985f01b514e7416aa167324 (patch) | |
tree | 2c4667612619ee9be2ee4d61e22150138b8c0035 /examples/with-markdoc/src | |
parent | 483ecd502724286d29ba8ceb78b4599105a24be7 (diff) | |
download | astro-0b59bc944b18913bd985f01b514e7416aa167324.tar.gz astro-0b59bc944b18913bd985f01b514e7416aa167324.tar.zst astro-0b59bc944b18913bd985f01b514e7416aa167324.zip |
[ci] format
Diffstat (limited to 'examples/with-markdoc/src')
-rw-r--r-- | examples/with-markdoc/src/pages/index.astro | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/with-markdoc/src/pages/index.astro b/examples/with-markdoc/src/pages/index.astro index b759145b4..04cef4cad 100644 --- a/examples/with-markdoc/src/pages/index.astro +++ b/examples/with-markdoc/src/pages/index.astro @@ -7,19 +7,19 @@ const { Content } = await intro.render(); --- <Layout title={intro.data.title}> - <main> - <h1>{intro.data.title}</h1> - <Content /> - </main> + <main> + <h1>{intro.data.title}</h1> + <Content /> + </main> </Layout> <style is:global> - table { - margin-block: 2rem; - margin-inline: auto; - } - table td { - padding-block: 0.3rem; - padding-inline: 0.5rem; - } + table { + margin-block: 2rem; + margin-inline: auto; + } + table td { + padding-block: 0.3rem; + padding-inline: 0.5rem; + } </style> |