diff options
author | 2023-09-06 15:25:56 +0000 | |
---|---|---|
committer | 2023-09-06 15:25:56 +0000 | |
commit | eb7615f25a88c25dc6db50b199877a8f79597a74 (patch) | |
tree | 74b5d3773ffb8fa7020e3d3cff2493ba4adc2ed6 /examples/with-markdoc | |
parent | c06b41a6b86a41ba4b1ffa4bdecafac9b7299768 (diff) | |
download | astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.gz astro-eb7615f25a88c25dc6db50b199877a8f79597a74.tar.zst astro-eb7615f25a88c25dc6db50b199877a8f79597a74.zip |
[ci] format
Diffstat (limited to 'examples/with-markdoc')
-rw-r--r-- | examples/with-markdoc/src/layouts/Layout.astro | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/examples/with-markdoc/src/layouts/Layout.astro b/examples/with-markdoc/src/layouts/Layout.astro index b1362340e..aaa6e0ce0 100644 --- a/examples/with-markdoc/src/layouts/Layout.astro +++ b/examples/with-markdoc/src/layouts/Layout.astro @@ -6,7 +6,7 @@ interface Props { const { title } = Astro.props; --- -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> @@ -25,8 +25,15 @@ const { title } = Astro.props; background-color: #f6f6f6; } code { - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; + font-family: + Menlo, + Monaco, + Lucida Console, + Liberation Mono, + DejaVu Sans Mono, + Bitstream Vera Sans Mono, + Courier New, + monospace; } main { margin: auto; |