dioxus/packages/rsx-rosetta
2022-12-29 02:21:32 -05:00
..
examples chore: take domtree by reference 2022-12-29 00:55:04 -05:00
src chore: add svg collection 2022-12-29 02:21:32 -05:00
Cargo.toml feat: complete html to rsx rosetta 2022-12-28 16:22:20 -05:00
README.md feat: complete html to rsx rosetta 2022-12-28 16:22:20 -05:00

Rosetta for RSX


Dioxus sports its own templating language inspired by C#/Kotlin/RTMP, etc. It's pretty straightforward.

However, it's NOT HTML. This is done since HTML is verbose and you'd need a dedicated LSP or IDE integration to get a good DX in .rs files.

RSX is simple... It's similar enough to regular Rust code to trick most IDEs into automatically providing support for things like block selections, folding, highlighting, etc.

To accomodate the transition from HTML to RSX, you might need to translate some existing code.

This library provids a central AST that can accept a number of inputs:

  • HTML
  • Syn (todo)
  • Akama (todo)
  • Jinja (todo)

From there, you can convert directly to a string or into some other AST.