mod from;
use crate::Value;
use std::{
collections::HashMap,
fmt,
fmt::{Display, Formatter},
};
#[derive(Debug, Clone)]
pub struct Command {
pub cmd: String,
pub args: Vec<Value>,
pub kvs: HashMap<String, Value>,
pub kind: CommandKind,
}
#[derive(Copy, Clone, Debug)]
pub enum CommandKind {
Inline,
Normal,
SmartLink,
CodeBlock,
OpenClose,
SelfClose,
}
impl Display for Command {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let a = self.args.iter().map(|v| format!("{}", v));
let kv = self.kvs.iter().map(|(k, v)| format!("{} = {}", k, v));
write!(f, "\\{}({})", self.cmd, a.chain(kv).collect::<Vec<_>>().join(", "))
}
}