hmm, can you try this:
1. right click the link and click "download link file"
2.open twinery.org and click "use it online"
3.click "import from file" and chose the downloaded file
above steps work for me...
got it (strange that it has no file extension)
anyhow, currently the 'rs' macro (what you call 'rsEval') works like this:
<<rs 'some (riscript)'>>
I wonder if it instead, it is possible to work like:
<<rs>>
some (riscript)
<<endrs>>
?
cool, and maybe there can be similar macro for grammar too, like
<<rg 'startSymbol'>>
{jsonObject}
<</rg>>
maybe just like this
Macro.add('rg', {
tags: null,
handler: function () {
try {
let json = JSON.parse(this.payload[0].contents);
$(this.output).wiki(RiTa.grammar(json).expand(this.args[0]));
}
catch (ex) {
return this.error(`Grammar error: ${typeof ex === 'object' ? ex.message : ex}`);
}
}
});