Visit Page
1
0
Fork
You've already forked pages
0
No description
HTML 77.6%
Nushell 15.9%
CSS 4.5%
JavaScript 2%
2025年11月26日 19:39:10 +01:00
copy.js add support for copy button for code blocks 2025年11月19日 18:29:07 +01:00
custom.css use smaller padding in the header 2025年11月22日 18:04:39 +01:00
identity.html improve identity verification snippet 2025年11月26日 19:39:10 +01:00
identity.md improve identity verification snippet 2025年11月26日 19:39:10 +01:00
index.html add --css-dir to make build 2025年11月22日 18:16:36 +01:00
index.md add LLWM as a subpage and tweak format 2025年11月22日 18:13:30 +01:00
LICENSE.txt rename LICENSE to LICENSE.txt 2025年11月17日 18:38:05 +01:00
lorem.txt add file, signature and public key 2025年11月17日 19:23:42 +01:00
lorem.txt.sig.asc add file, signature and public key 2025年11月17日 19:23:42 +01:00
make.nu add --css-dir to make build 2025年11月22日 18:16:36 +01:00
pubkey.asc add file, signature and public key 2025年11月17日 19:23:42 +01:00
README.md update README snippet 2025年11月17日 19:21:51 +01:00
template.html switch to Pandoc 2025年11月17日 18:47:23 +01:00

pandoc -D html | save -f template.html
for page in [index, identity] {
 let input = $page | path parse | update extension "md" | path join
 let output = $page | path parse | update extension "html" | path join
 pandoc ...[
 -f markdown
 $input
 -o $output
 --template=template.html
 --css custom.css
 --highlight-style=tango
 ]
}