Sergey Samokhov
Sergey Samokhov
Well, adding a space kinda makes sense semantically. There's no reason a default value (even if in the case of `=?` the value is an implicit `None`) should be closer...
> because at the implementation level the compiler treats an optional argument as an argument of type 'option of something' Thanks for the insight. Makes sense. But what if there...
I'm all for fixing it in VS Code, but even then it will still linger everywhere there's no tokenization, e.g., in terminals, in various git clients, etc.
Here’s the truth table pattern example from Elm In Action: ```elm case ( link, page ) of -------------------------------------------- ( Gallery, Gallery ) -> True ( Gallery, _ ) -> False...
As for the ignore directives syntax, [Prettier seems](https://prettier.io/docs/en/ignore.html) to simply ignore the next statement after the comment. Maybe `elm-format` could ignore expressions (bindings, `if`s, `case`s etc.)
My use case is, I want a WYSIWIG Markdown editing with [elm-rte-toolkit](https://github.com/mweiss/elm-rte-toolkit). Also, search (and probably replace) across notes/files and maybe some other manipulations. The audience is, first and foremost,...
Hello @dillonkearns. Thanks to you for all the insights and, of course, thanks for your work. Again, for my use case, preserving the markdown code style is not really important,...
I’m pretty sure I don’t understand all the design decisions behind `Renderer`*, but it seems a little too low-level for the task. So, yeah `blocksToMarkdown` probably shouldn’t be more complicated...
@matheus23 Terrific, thanks a ton! As for the `Renderer`/`Result` things, maybe it’s worth considering using the renderer interface internally if that simplifies code reuse, but expose a `List Block ->...
And yes, those warnings show during compilation of dependent projects, which is why I’m here :slightly_smiling_face: