1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 09:53:22 -07:00

configure a proper dark-mode background for ghmd

This commit is contained in:
Connor Olding 2022-08-29 22:04:58 -07:00
parent 7a769e3853
commit ba2982b880

10
sh/ghmd
View File

@ -18,10 +18,12 @@ ghmd() { ### @-
### ~/sh/ghmd < ~/rc/README.md > ~/rc/README.html
### ```
printf '%s' '<!DOCTYPE html><html><head><meta charset="utf-8"><link ' \
'href="https://eaguru.guru/t/github-markdown.css" ' \
'media="all" rel="stylesheet" type="text/css"/></head><body ' \
'style="box-sizing: border-box; min-width: 200px; max-width: 980px; ' \
'margin: 0 auto;"><article class="markdown-body" style="padding: 45px;">'
'href="https://eaguru.guru/t/github-markdown.css" media="all" ' \
'rel="stylesheet" type="text/css"/><style type="text/css">' \
'@media (prefers-color-scheme: dark) { body { background: black; } }' \
'</style></head><body style="box-sizing: border-box; min-width: 200px; ' \
'max-width: 980px; margin: 0 auto;"><article class="markdown-body" ' \
'style="padding: 45px;">'
curl -s --data-binary @- -H 'Content-Type: text/plain' \
https://api.github.com/markdown/raw
local ret=$?