chtenb
chtenb
> Side note: Passing /graph to your msbuild invocation should resolve the issue. It did for me Interesting, I didn't know about that parameter. Any reason why that isn't on...
Thanks for coming back to this! Unfortunately the two workarounds you proposed are not more convenient for me than using a project order in the solution that works. Having all...
Here is an example ```adoc Test~a1 a2~ ``` Note that the space between a1 and a2 is a non-breaking space.
According to the JS documentation at https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Character_Classes `\S` is defined as `[^\f\n\r\t\v\u0020\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]`.
Perhaps the asciidoc code could refrain from using the `\S` and `\s` classes at all, and instead use explicit character classes?
I'm happy to provide a PR, but I'm unfamiliar with this codebase. Do you have any pointers to where this regexp is located?
> It's a complex issue because the regexp is defined in Asciidoctor Ruby. Wouldn't it simply be a matter of replacing `\S` with `[^ \t\r\n]` in the regexp in question...
> This is asking the syntax to do what it was not designed to do. I'm not sure what you mean by this, since you stated that the current behavior...
Thanks for your response. Good to know that the trace function is safer to use than my custom debug function.
Whoops, looks like I simplified the repro one step too far. This is the correct example: ```koka ref struct model value : int fun model(b : bool) : model Model(if...