Dan Miller
Dan Miller
I have a similar issue with some pre-formatted text that includes both newlines and some ANSI color codes. The above workaround works for the newlines but not the colors. Would...
I have a separate tool that generates a table where certain rows are highlighted based on their significance. The raw string literal ends up looking something like ```c++ "| \033[1;31mFOO\033[0m...
It's some in-house tool. It's possible I might be able to reformat the output as JSON and parse it into a `Table`. I'll give it a shot. Thanks!
I don't suppose there's a plan for this to make it into the 1.0 release, is there? It's really the last thing keeping me away from atom.
I was surprised at this. In fact, dropping the code ``` let _ = assert_eq(s1:-1, s1:1); ``` into a test raises no errors from the interpreter.
Yes, that appears to be what happened. I might try and work on this if I get some spare time. Any idea what a good approach might be? Make the...
> How does Bazel handle it if the user wants to use C++17? This actually only applies to the library binaries - the user can still use C++17 for their...
So I have a use case where the bazel config strategy doesn't work - an old embedded compiler that doesn't know `-std=c++14`, but unit tests that run on a PC...