lest
lest copied to clipboard
Low entropy HTML5 templating engine
## Beep boop. Your images are optimized! Your image file size has been reduced! Details | File | Before | After | Percent reduction | |:--|:--|:--|:--| | /docs/img/top-back.jpg | 33.14kb...
downloaded R3 from http://www.rebolsource.net/ after do %lest.reb I got that error: compile-rules word is not bound to a context
``` >> markdown "***FOO***" == "*FOO/**" ``` (What it's supposed to do is be both bold and italic.) Generally it seems there should be some sort of protection or assert...
`[[1]](http://example.com)` for instance is not recognized as a link, and is shown as plain text. _(Both GitHub and Stackoverflow allow brackets in links, and I cannot tell you how they...
If I call markdown on `"*[hostilefork](http://hostilefork.com)*"` I get`"[foo](http://example.com)"` Expected the inner link to be processed. Similar problems happen if the outer style is done with double asterisks for bold style,...
If you write: `"X -- *(It marks the spot!)*"` The markdown rules will turn that into: `"X (It marks the spot!)*"` Expected it just to italicize "(It marks the spot!)"...
Generally speaking in markdown, you can use markdown inside of a link (as long as it isn't a link, I guess?) `[**hostilefork**](http://hostilefork.com)` => [**hostilefork**](http://hostilefork.com) Currently under `md.reb`, that produces a...
Current implementation holds templates in different complex than other variables. This is problematic for commands, debugging, etc.
``` submit with action "info" "Informujte se" p "Ano, mám zájem o zasílání informací o vašich kurzech." ``` This requires enclosing SUBMIT into DIV
Following code: ``` b ("hello") span "world" ``` produces wrong result: ``` helloworld ``` Should be: ``` helloworld ```