#template #markup #html

sailfish-compiler

Simple, small, and extremely fast template engine for Rust

27 releases

0.8.4-beta.1 Feb 20, 2024
0.8.3 Oct 22, 2023
0.8.0 Jul 28, 2023
0.6.0 Jan 24, 2023
0.2.0 Jul 16, 2020

#164 in Template engine

Download history 1203/week @ 2024-01-14 977/week @ 2024-01-21 751/week @ 2024-01-28 833/week @ 2024-02-04 758/week @ 2024-02-11 1021/week @ 2024-02-18 1190/week @ 2024-02-25 1391/week @ 2024-03-03 1065/week @ 2024-03-10 797/week @ 2024-03-17 925/week @ 2024-03-24 1011/week @ 2024-03-31 731/week @ 2024-04-07 1029/week @ 2024-04-14 1001/week @ 2024-04-21 865/week @ 2024-04-28

3,705 downloads per month
Used in 2 crates (via sailfish-macros)

MIT license

84KB
2K SLoC

SailFish

Simple, small, and extremely fast template engine for Rust

Tests Version dependency status Rust 1.60 License: MIT

User Guide | API Docs | Examples

✨ Features

  • Simple and intuitive syntax inspired by EJS
  • Include another template file inside template
  • Built-in filters
  • Minimal dependencies (<15 crates in total)
  • Extremely fast (See benchmarks)
  • Better error message
  • Syntax highlighting support (vscode, vim)
  • Works on Rust 1.60 or later

🐟 Example

Dependencies:

[dependencies]
sailfish = "0.8.4-beta.1"

Template file (templates/hello.stpl):

<html>
  <body>
    <% for msg in &messages { %>
      <div><%= msg %></div>
    <% } %>
  </body>
</html>

Code:

use sailfish::TemplateOnce;

#[derive(TemplateOnce)]
#[template(path = "hello.stpl")]
struct HelloTemplate {
    messages: Vec<String>
}

fn main() {
    let ctx = HelloTemplate {
        messages: vec![String::from("foo"), String::from("bar")],
    };
    println!("{}", ctx.render_once().unwrap());
}

You can find more examples in examples directory.

🐾 Roadmap

  • Template trait (RFC)
  • Template inheritance (block, partials, etc.)

👤 Author

🇯🇵 Ryohei Machida

🤝 Contributing

Contributions, issues and feature requests are welcome!

Since sailfish is an immature library, there are many planned features that is on a stage of RFC. Please leave a comment if you have an idea about its design!

Also I welcome any pull requests to improve sailfish! Find issues with Status: PR Welcome label, and let's create a new pull request!

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Ryohei Machida.

This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator

Dependencies

~0.5–11MB
~98K SLoC