Petre Damoc
Petre Damoc
It's not possible right now to generate docs for unpublished code but should not be all that difficult to implement since the script consumes the same kind of information. For...
I don't know how to add links to other docsets (I don't even know if that's possible) For now, I'll think about just adding the extra `documentation.json` to a regular...
There was a plan for guides few months ago but it was scrapped. I'll look into it again.
SSCCE: `Main.elm` ```elm module Main exposing (..) import A import Html exposing (text) fun = String.fromInt main = text (A.fun 1) ``` `A.elm` ```elm module A exposing (fun) import B...
This is still a problem in 0.18. The top story currently on /r/elm is a twitter post about it. What would be the disadvantages/issues of the solution proposed by @Apanatshka?...
This is one of the cases where it is recommended to use a `Html.Keyed.node`. [Here is your example fixed with this technique.](https://ellie-app.com/8PwGK87QYnka1)
1. In my own work with `node "style"` I have discovered that putting the styles in a `style` node in the `head` solved a lot of the performance problems I...
> Hrm, I think that's correct, as a documentation comment always need a target to comment? A documentation comment is just a multiline comment. If all multiline comments must be...
It is also used for aliasing modules as in ``` elm import Html.Attributes as Attr ```
A small bump to this issue as I ran into it today with a `gqlgen` server. I had to bypass `elm-graphql` by manually creating the query and using a request...