bram209 / leptosfmt

A formatter for the leptos view! macro
Apache License 2.0
274 stars 30 forks source link

Feat: Respect Single Empty Lines #27

Closed BlackAsLight closed 1 year ago

BlackAsLight commented 1 year ago

When formatting, it should respect single empty lines placed between tags, but collapse any empty lines greater than one down to one.


view! { cx,
    <Meta charset="UTF-8" />
    <Meta http_equiv="X-UA-Compatible" content="IE=edge" />
    <Meta name="viewport" content="width=device-width, initial-scale=1.0" />

    <Body />
}