-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassets.nw
53 lines (53 loc) · 1.14 KB
/
assets.nw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
This was generated from pages/2024/2024-01-06_15h38m06_meta/README.txt, do not change this file.
<<assets - base url>>=
https://ctarbide.github.io/
@
<<assets - favicon.ico for top level>>=
favicon.ico
@
<<assets - favicon.ico for pages>>=
../../../favicon.ico
@
<<assets - md.pl for top level>>=
pages/2023/2023-10-19_21h40m15_perl·markdown·daringfireball.net/md.pl
@
<<assets - md.pl for pages>>=
../../2023/2023-10-19_21h40m15_perl·markdown·daringfireball.net/md.pl
@
<<style>>=
<style>
pre {
font-family: "Lucida Console", Courier, monospace;
font-size: 14pt;
}
code {
font-family: "Lucida Console", Courier, monospace;
font-size: 14pt;
}
body {
color: #111;
width: 90ch;
max-width: calc(100vw - 8ch);
margin: 3ch auto 6ch auto;
font-family: Georgia, "Bitstream Charter", serif;
font-size: 14pt;
}
@media (prefers-color-scheme: dark) {
body {
color: #fbfbfe;
background-color: #1c1b22;
}
a:visited {
color: #aac;
}
a {
color: #6af;
}
}
</style>
@
<<asset - function escape>>=
escape(){
perl -lpe's,&,&,g; s,<,<,g; s,:,:,g; s,^\@,@,' -- "$@"
}
@