#markup-language #formatter #formatting #vue #html #svelte #astro

markup_fmt

Configurable HTML, Vue, Svelte, Astro, Angular, Jinja, Twig, Nunjucks and Vento formatter

28 releases (15 breaking)

new 0.16.0 Nov 20, 2024
0.15.0 Oct 30, 2024
0.11.0 Jul 19, 2024
0.6.0 Mar 2, 2024
0.2.1 Nov 11, 2023

#30 in Template engine

Download history 70/week @ 2024-07-31 40/week @ 2024-08-07 487/week @ 2024-08-14 765/week @ 2024-08-21 703/week @ 2024-08-28 1137/week @ 2024-09-04 995/week @ 2024-09-11 1121/week @ 2024-09-18 1197/week @ 2024-09-25 1037/week @ 2024-10-02 1716/week @ 2024-10-09 1714/week @ 2024-10-16 1589/week @ 2024-10-23 1677/week @ 2024-10-30 1242/week @ 2024-11-06 780/week @ 2024-11-13

5,598 downloads per month
Used in 7 crates (4 directly)

MIT license

235KB
6K SLoC

markup_fmt is a configurable HTML, Vue, Svelte, Astro, Angular, Jinja, Twig, Nunjucks and Vento formatter.

Basic Usage

You can format source code string by using format_text function.

use markup_fmt::{config::FormatOptions, format_text, Language};

let options = FormatOptions::default();
assert_eq!("<div class=\"container\"></div>\n", &format_text(
    "<div class=container></div>",
    Language::Html,
    &options,
    |code, _| Ok::<_, std::convert::Infallible>(code.into()),
).unwrap());

For detailed documentation of configuration, please refer to Configuration on GitHub.

If there're syntax errors in source code, it will return [Err]:

use markup_fmt::{config::FormatOptions, format_text, FormatError, Language, SyntaxError};

let options = FormatOptions::default();
assert!(matches!(
    format_text(
        "<div>",
        Language::Html,
        &options,
        |code, _| Ok::<_, std::convert::Infallible>(code.into()),
    ).unwrap_err(),
    FormatError::Syntax(SyntaxError { .. })
));

External formatter can return [Err] as well. This error will be aggregated and returned in FormatError::External:

use markup_fmt::{config::FormatOptions, format_text, FormatError, Language};

struct ExternalFormatterError;

let options = FormatOptions::default();
assert!(matches!(
    format_text(
        "<script>a</script>",
        Language::Html,
        &options,
        |_, _| Err(ExternalFormatterError),
    ).unwrap_err(),
    FormatError::External(errors) if !errors.is_empty()
));

Dependencies

~3MB
~45K SLoC