Antti Korpi
                                            Antti Korpi
                                        
                                    > Do other games launch successfully when forced to use Steam Linux Runtime via Properties -> Compatibility -> Force the use of... -> `Steam Linux Runtime`? For example, you could...
How do I do that?
Following up, pardon the delay. I did as @RyuzakiKK's [suggested](https://github.com/ValveSoftware/steam-runtime/issues/504#issuecomment-1135527531). Perhaps the new minidump is more useful? [Logs here](https://gist.github.com/anko/f80f40d5866f1b9128f37ffa9ef0e53e). - - - To be clear since it's been a while,...
I believe I have the same issue. (With Steam Play enabled, Dota 2 won't start. It works with Steam Play disabled.) As a second data point, I collected logs as...
What should `semver.dec('2.0.0', 'patch')` be? `1.99.99`? `1.0.0`? Something in between? The semver spec doesn't define how to decrement a semver or what it even means. I suspect this is why.
I think code implementing a spec doesn't belong in a spec. Reasons: - It's impossible to choose languages that represent the full breadth of programming languages well. ([Many paradigms exist](http://en.wikipedia.org/wiki/Programming_paradigm).)...
[The CommonMark spec says](http://spec.commonmark.org/0.27/#example-203): > A blank line always separates block quotes Remarkable [on the other hand](https://github.com/jonschlinkert/remarkable#options)— > is configured to be similar to GFM
We use [remarkable](https://github.com/jonschlinkert/remarkable) for Markdown parsing, which uses something similar to Github Flavoured Markdown by default. It supposedly supports CommonMark, and we have a `--remarkable-options` flag to change its [options](https://github.com/jonschlinkert/remarkable#options),...
Could you create a simple test case?
Can't repro… :confused: This works for me: ```sh cd $(mktemp -d) npm i markdown-pdf echo '# hi' > README.md ./node_modules/.bin/markdown-pdf README.md ``` Also works with markdown-pdf globally installed. Version deets:...