Hello, hope this is the correct place for this question. i am trying to play with the custom roll templates. i have in my html in the bottom <rolltemplate class="sheet-rolltemplate-kaka"> <table> <caption>{{name}}</caption> {{#allprops() }} <tr><td>{{key}}</td><td>{{value}}</td> {{/allprops() }} </table> </rolltemplate> and in the css: .sheet-rolltemplate-kaka table {
width:100%;
background-color:white;
border:1px solid rgba(112,32,130,1)
}
.sheet-rolltemplate-kaka caption {
background-color:rgba(112,32,130,1);
color:white;
font-family:"Helvetica Neue",Helvetica,sans-serif;
font-weight:300;
font-size:1.1em;
padding:5px
}
.sheet-rolltemplate-kaka td {
padding:5px;
line-height:1.4em;
vertical-align:top
}
.sheet-rolltemplate-kaka td:first-child {
font-weight:bold;
text-align:right;
min-width:50px;
padding-right:10px
}
.sheet-rolltemplate-kaka tr:nth-child(even) {
background-color:#eee
} when i enter on the chat &{template:kaka} {{name=Test}}{{test=2}}{{2}}{{3}} i get blank if i enter on the chat &{template:Default} {{name=Test}}{{test=2}}{{2}}{{3}} i get a default roll template any thoughts what is the problem? thank you!