confmark 0.1.1

Bidirectional CLI tool for converting Markdown to Confluence markup and Confluence markup back to Markdown.
Documentation
# Rustfmt configuration for consistent code formatting
# See: https://rust-lang.github.io/rustfmt/

edition = "2024"

# Maximum line width
max_width = 160

# Use tab or space for indentation
hard_tabs = false
tab_spaces = 4

# Formatting options
newline_style = "Unix"
remove_nested_parens = true
reorder_imports = true
reorder_modules = true
use_small_heuristics = "Default"

# Imports
imports_granularity = "Crate"
group_imports = "StdExternalCrate"

# Misc
format_code_in_doc_comments = true
format_strings = true
normalize_comments = true
normalize_doc_attributes = true
wrap_comments = true
comment_width = 80

# Function calls and definitions
fn_params_layout = "Tall"
fn_call_width = 80

# Structs and enums
struct_field_align_threshold = 0
enum_discrim_align_threshold = 0

# Chains
chain_width = 60

# Match expressions
match_arm_blocks = true
match_arm_leading_pipes = "Never"
match_block_trailing_comma = true

# Control flow
control_brace_style = "AlwaysSameLine"