feat: Add TableStyle::Nothing to allow disabling table borders

This commit is contained in:
Andrew Phillips
2025-09-08 19:16:35 -03:00
committed by Andrew Phillips (aider)
parent bb45af93fc
commit eaf47d7fed
2 changed files with 82 additions and 97 deletions

View File

@@ -26,10 +26,10 @@ pub enum ContentArrangement {
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "lowercase")]
pub enum TableStyle {
#[default]
Ascii,
Utf8,
Utf8Full,
#[default]
Nothing,
Custom(String),
}