Skip to content
/ jrsx Public

A clean JSX syntax for your Askama templates

Notifications You must be signed in to change notification settings

cvng/jrsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jrsx

CI

A clean JSX syntax for your Askama templates.

Before:
{%- import "hello.html" as hello_scope -%}
{%- import "child.html" as child_scope -%}

{% call hello_scope::hello(name) %}
{% call hello_scope::hello(name=name) %}
{% call hello_scope::hello(name="world") %}
{% call child_scope::child() %}Super!{% endcall %}
After:
<Hello name />
<Hello name=name />
<Hello name="world" />
<Child>Super!</Child>

About

A clean JSX syntax for your Askama templates

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published