Liara
Liara
I found the [bulma library](https://github.com/jgthms/bulma), which seems to do what I need.
I don't know why it doesn't work. I never tested it on Mars, maybe it doesn't work there.
I don't maintain it anymore. If you care about it you have to fix it by yourself (shouldn't be too difficult because it is not a lot of code).
This is not implemented and I have no interest to implement it. You would have to do it by yourself.
While a valid ticket report, I'm not going to work on this. I mainly maintain this project because the previous maintainer doesn't want to do it anymore. Because I don't...
Looking in more detail to the types, I can see why it does not work but it is still a very weird limitation and one that makes handling rules that...
Actually, what I want is ``` scala zeroOrMore(RuleN[A :: B :: C :: ... :: HNil]): RuleN[Seq[A :: B :: C :: ... :: HNil] :: HNil] ``` i.e. return...
Yes indeed I can do that. Another thing I overlooked.
It is also not possible to call the implicit conversion manually. ``` scala Rule.Runnable(p.program).run() ``` shows: ``` Illegal Runnable.apply call: org.parboiled2.Rule.Runnable[...](p.program) ```
I got it working by using `p.__run(f(p))` instead of `f(p).run()`.