euv-docs 0.25.19

A VuePress-style documentation site generator powered by euv + euv-ui (Rust/WASM).
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Props for the [`docs_password_gate`] component.
#[derive(Clone, Default)]
pub(crate) struct DocsPasswordGateProps {
    /// Page route (used as the unlock key in localStorage).
    pub route: &'static str,
    /// Hex-encoded SHA-256 of the correct password.
    pub expected_hash: &'static str,
    /// Page title (shown above the form so the user knows which article
    /// they're being asked to unlock).
    pub title: &'static str,
}