Short posts on topics related to AI, XAI, and AI for chemistry.
URL: https://santi-mir.github.io/posts.
-
Build: it builds on
./docs. The packages needed for building from the source markdown files are:cargo install mdbook mdbook-mermaid mdbook-katex
-
License: All the content here is under CC BY 4.0, except for quotations which may share the license of the source.
-
Contributions: Contributions are taken under the same license, CC BY 4.0.
-
Tools:
mdbook.rsbuilds the book andmdbook-mermaid.rsa plugin to insert graphs.
Steps
Besides the build-apps, install:
cargo install lychee rumdl caesiumclt
It's useful to have a pre-commit git hook
#!/bin/env bash
rumdl check
mdbook buildAnd pre-push
#!/bin/env bash
lychee src || exit 1
caesiumclt --lossless -O bigger src/assets/*.{jpg,jpeg,png} --same-folder-as-inputThen do chmod +x .git/hooks/{pre-push,pre-commit}