Results 46 comments of Magnus Hoff

The crux here seems to be that I don't know how to implement relative include paths. My preference is to relative paths as well. Leading `/` for crate root would...

Hm, maybe is a lead. I would first need to get hold of a `Span`. Maybe I could go `token_stream.iter().next().unwrap().span().call_site().source_file()` or something like that. Note: `source_file()` is experimental ()

@TheButlah Ah, cool. Definitely something for me to keep an eye on. Not too stoked about using nightly, but thank you for the heads up!

Super, thanks! Could you add a test for this in scanner.rs also? Something like [bart_tag_matches_scope_section_opener](https://github.com/maghoff/bart/blob/master/libs/bart_derive/src/scanner.rs#L290)?

Oh, it is possible to make better error messages. The error messages are `panic!`s that originate in the `BartDisplay` proc macro. PRs welcome ;) Unfortunately, it does not seem possible...

The SectionType should be Iteration. In your other test you are using this to _iterate_ over a Vec, so that checks out. But it highlights a parsing ambiguity. The syntax...

Hi, I'm traveling. I'll get to this PR in a while.

Maybe also support booleans with `{{^bool?}}`

Thanks for getting back to me :) I'll present the background more detailed and then try to clarify how I expect this to work. I have tried illustrating how and...

I have made a fork with changes visible in the patch at the link I posted in the initial description: This is not a patch in the sense that it...