No description
| copy.js | add support for copy button for code blocks | |
| custom.css | use smaller padding in the header | |
| identity.html | improve identity verification snippet | |
| identity.md | improve identity verification snippet | |
| index.html |
add --css-dir to make build
|
|
| index.md | add LLWM as a subpage and tweak format | |
| LICENSE.txt | rename LICENSE to LICENSE.txt | |
| lorem.txt | add file, signature and public key | |
| lorem.txt.sig.asc | add file, signature and public key | |
| make.nu |
add --css-dir to make build
|
|
| pubkey.asc | add file, signature and public key | |
| README.md | update README snippet | |
| template.html | switch to Pandoc | |
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
]
}