vscode-twig-language-2
vscode-twig-language-2 copied to clipboard
Broken format: {%%} get inline if the parent tags has class attribute
This look terrible.

Is there any option to fix it?
I suggest having a method, inside RRuleSet, instead of having a feature flag.
Again, Cargo requires that features are additive and it may affect other libraries unexpectedly.
Another option which I am thinking about is making RRuleSet generic over the timezone used. Then the server code will look something like this:
use chrono::Utc;
let rrule_set: RRuleSet<Utc> = "DTSTART:...".parse().unwrap();
// Below will yield occurrences in Utc timezone
rrule_set.all(100);
This approach will also solve #49 where generated occurrences should be in Local timezone and not chrono_tz::Tz.
use chrono::Local;
let rrule_set: RRuleSet<Local> = "DTSTART:...".parse().unwrap();
// Below will yield occurrences in Local timezone
rrule_set.all(100);