//! Shared helper functions for miscellaneous format readers.
use crate::tag::{Tag, TagGroup, TagId};
use crate::value::Value;
pub(crate) fn mktag(family: &str, name: &str, description: &str, value: Value) -> Tag {
let pv = value.to_display_string();
Tag {
id: TagId::Text(name.to_string()),
name: name.to_string(),
description: description.to_string(),
group: TagGroup {
family0: family.into(),
family1: family.into(),
family2: "Other".into(),
},
raw_value: value,
print_value: pv,
priority: 0,
}
}