intermodal/bin/gen/src/faq_entry.rs
Casey Rodarmor 1cb1178672
Create FAQ
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
2020-04-19 23:19:29 -07:00

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,
}