Yosuke Torii

Results 26 comments of Yosuke Torii

なるほど、参考にします。 (第2版...出るといいですね...🙂)

なるほど。第2版があれば直したいですね。 報告ありがとうございます。

+1. I need this too, for explaining grammar. Your link above is wrong. Fix => http://elm-lang.org/docs/syntax.

I'm using [Grammarly](https://chrome.google.com/webstore/detail/grammarly-for-chrome/kbfnbcaeplbcioakkpcpgfkobkghlhen) which automatically checks English grammar. It is also used by 10,000,000+ others. It inserts an element (like below) when a `` is focused. ![image](https://user-images.githubusercontent.com/2568148/63400275-291f1580-c40e-11e9-94f8-7a4d77686b59.png) I found this...

@avh4 I ran into the same problem once before. > In our case, we have a styled checkbox module which needs to stop propagation of clicks on the checkbox and...

I ran into the same problem. It seems `Parser.int` reads non-digit characters right after digits. This passes. ```elm run int "2+" --> Ok 2 ``` This fails. (BadInt) ```elm run...

I just checked it in 0.17.1. It is still happening. But I wasn't able to reproduce it except for elm-lang/core. ![2016-08-13 17 20 21](https://cloud.githubusercontent.com/assets/2568148/17642312/0a786094-617b-11e6-986f-6ef0b7636537.png)

I'm implementing a XML parser. XML considers "\r" as a whitespace. I haven't parsed any document yet but maybe a document that is written in Windows environment can contain that...

This refactoring makes sense a lot. Thank you :) One point I care about is that the benefit of `Html.Lazy.lazy` decreases because re-assigning record property (`selectedObjects`) will lose the original...