MartinSStewart

Results 78 issues of MartinSStewart

DreamBerd (and most other languages for that matter) have a variety of keywords one can use. But oddly enough, none of them have a safe word. I think it's important...

Right now, using ascii-collab on a touch device is really buggy. Panning and text input are both unreliable (on iPhone the keyboard refuses to appear and at least one Android...

Using `>`, `$`, control characters, `"`, `'`, empty string, and probably more that I haven't discovered yet will cause a runtime error when used with `Html.Attributes.attribute a ""`. Normally this...

I noticed on the https://html-to-elm.com/ website, `"` inside strings are not escaped in the generated Elm code. For example `"Test"` will generate `Html.text ""Test""`

bug
help wanted
good first issue

The following `test ` html becomes `Html.text "test"`. Notice that the trailing space is removed. This can cause problems if there's more text following after the div that then gets...

In order for Lamdera to work, Types.elm must contain `FrontendModel`, `FrontendMsg`, `BackendModel`, `BackendMsg`, `ToFrontend`, and `ToBackend`. elm-review-unused can potentially remove these types if they aren't referenced anywhere however. A work...

bug
help wanted

I have a `Date` value that I'd like to format using this package. This seems like a natural thing to do since this package is called `date-format` but currently it...

In the documentation for [Debug.Control.choice](https://package.elm-lang.org/packages/avh4/elm-debug-controls/latest/Debug-Control#choice) it says > This will crash if you provide an empty list. Why not change the type signature to `( String, Control a ) ->...

The `miniBill/elm-codec-json` does the same thing as the `DesktopApp.JsonMapping` module but with (imo) a slightly nicer API for handling custom types. Additionally it would mean not needing to maintain as...

In the documentation readme it says `(For an Elm styling system that is a complete departure from CSS, check out style-elements.)`. Maybe that should be updated to `(For an Elm...