mdgriffith / elm-markup

Elm-friendly markup

Home Page:https://package.elm-lang.org/packages/mdgriffith/elm-markup/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Out of sync?

jxxcarlson opened this issue · comments

Am getting the errors below using elm make src/Main.elm --output=editor.js:

I cannot find a `Mark.Error` type:

67|     , errors : List Mark.Error
                        ^^^^^^^^^^
The `Mark` module does not expose a `Error` type. ...
 .```

Fixed this, then

$ elm make src/Main.elm --output=editor.js
Detected errors in 1 module.
-- NAMING ERROR --------------------------------------------------- src/Main.elm

I cannot find a Mark.Edit.Error type:

387| -> Result (List Mark.Edit.Error) ( Cursor, Mark.Parsed )
^^^^^^^^^^^^^^^
The Mark.Edit module does not expose a Error type. ..

Thanks! I updated the example with the correct types.