formatting

This commit is contained in:
Talon Poole 2021-02-16 22:16:52 +00:00
parent 8b6bacb14e
commit be89343c84

View file

@ -46,7 +46,7 @@ These may also be nice to have:
<meta name="author" content="" /> <meta name="author" content="" />
<meta name="description" content="" /> <meta name="description" content="" />
<link rel="canonical" href="gemini://" /> <link rel="canonical" href="gemini://" />
<meta name="color-scheme" content="dark light"> <meta name="color-scheme" content="dark light" />
``` ```
# gmi-web(1) # gmi-web(1)
@ -145,13 +145,13 @@ The CSS variables exposed by gmi-web(1) are derived from [gmi.css](./gmi.css), w
```html ```html
<head> <head>
<!-- assuming you wanna host a copy and link to it... --> <!-- assuming you wanna host a copy and link to it... -->
<link rel="stylesheet" type="text/css" href="gmi.css" /> <link rel="stylesheet" type="text/css" href="gmi.css" />
<meta name="color-scheme" content="dark light"> <meta name="color-scheme" content="dark light" />
<!-- ... --> <!-- ... -->
</head> </head>
<html style="--foreground:#555555; --background:#9EEBCF;"> <html style="--foreground:#555555; --background:#9EEBCF;">
<!-- ... --> <!-- ... -->
</html> </html>
``` ```