mdbook-admonish 1.7.0

A preprocessor for mdbook to add Material Design admonishments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Install everything for development/CI
#
# Does not include offline node development stack (i.e. yarn)

set -exuo pipefail

cd "$(dirname "$0")"/..

rustup component add rustfmt clippy

if ! cargo audit --version; then
  cargo install cargo-audit --force
fi

./scripts/install-mdbook