display-as

Crates.iodisplay-as
lib.rsdisplay-as
version0.7.0
sourcesrc
created_at2018-11-21 17:54:16.127323
updated_at2022-11-20 13:25:48.164826
descriptionCompile-time templates for displaying data in different markup formats.
homepage
repositoryhttps://github.com/droundy/display-as
max_upload_size
id98000
size54,458
David Roundy (droundy)

documentation

README

DisplayAs

Documentation Build Status

These crates creates rusty templates that are evaluated at compile-time (much like askama). DisplayAs is explicitly designed to support multiple output formats (thus the "as" in its name).

Comparison with other template engines in rust

Given there are numerous existing template engines, you might ask what distinguishes display-as from these other engines?

  1. The most notable distinction is that display-as compiles the templates at compile time, like askama and ructe but unlike most other engines.

  2. diplay-as-template supports (almost) arbitrary rust code in the template, unlike askama or ructe. In the case of askama, there is a conscious decision not to support this. I believe that it is nicer and easier not to learn a new language for the expressiosn within templates.

  3. DisplayAs and display-as support embedding one format into another, so that you can mix languages. This is most common in HTML, which supports numerous formats such as javascript or CSS, but also math mode within either LaTeX or even in HTML using MathJax. This has been discussed as a possible feature in ructe.

  4. Using display-as is typesafe on the output side as well as the input side. You can't accidentally include javascript formatted text into HTML, or double-escape HTML strings.

Commit count: 178

cargo fmt