Add an FAQ section to the book. Include information about how to use imdl with `fzf --preview`. type: documentation fixes: - https://github.com/casey/intermodal/issues/397
9 lines
175 B
Rust
9 lines
175 B
Rust
use crate::common::*;
|
|
|
|
#[derive(Clone, Debug, Deserialize)]
|
|
pub(crate) struct FaqEntry {
|
|
pub(crate) title: String,
|
|
pub(crate) text: String,
|
|
pub(crate) anchor: String,
|
|
}
|