diff options
author | 2022-07-08 22:08:32 +0200 | |
---|---|---|
committer | 2022-07-08 22:08:32 +0200 | |
commit | 59e8c71786fd1c154904b3fefa7d26d88f4d92d2 (patch) | |
tree | 3a352e838b25a402c608913aeca21f471d75a826 /examples/with-markdown-plugins/src | |
parent | 1f9e4857ff2b2cb7db89d619618cdf546cd3b3dc (diff) | |
download | astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.gz astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.tar.zst astro-59e8c71786fd1c154904b3fefa7d26d88f4d92d2.zip |
Format astro files in examples (#3862)
Diffstat (limited to 'examples/with-markdown-plugins/src')
-rw-r--r-- | examples/with-markdown-plugins/src/layouts/main.astro | 4 | ||||
-rw-r--r-- | examples/with-markdown-plugins/src/pages/about.astro | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/with-markdown-plugins/src/layouts/main.astro b/examples/with-markdown-plugins/src/layouts/main.astro index 854b2b425..4ab5b7888 100644 --- a/examples/with-markdown-plugins/src/layouts/main.astro +++ b/examples/with-markdown-plugins/src/layouts/main.astro @@ -1,10 +1,10 @@ --- -import '../styles/global.css'; +import "../styles/global.css"; const { content } = Astro.props; --- -<html lang={content.lang || 'en'}> +<html lang={content.lang || "en"}> <head> <meta charset="utf-8" /> diff --git a/examples/with-markdown-plugins/src/pages/about.astro b/examples/with-markdown-plugins/src/pages/about.astro index 1115fcb8c..e533ceac8 100644 --- a/examples/with-markdown-plugins/src/pages/about.astro +++ b/examples/with-markdown-plugins/src/pages/about.astro @@ -1,9 +1,9 @@ --- -import { Markdown } from 'astro/components'; -import MainLayout from '../layouts/main.astro'; +import { Markdown } from "astro/components"; +import MainLayout from "../layouts/main.astro"; --- -<MainLayout content={{ title: 'About' }}> +<MainLayout content={{ title: "About" }}> <Markdown> # About |