Idris2Doc : Text.Markdown.Errors

Text.Markdown.Errors

(source)
Errors which can be raised by the markdown lexer or parser.

Notes: such errors are not supposed to happen, they are used for debugging
purposes.

Definitions

dataMdErrorType : Type
Totality: total
Visibility: public export
Constructors:
LexingError : MdErrorType
ParsingError : MdErrorType

Hint: 
ShowMdErrorType
recordMdError : Type
  A markdown error including the location of the error.

Totality: total
Visibility: public export
Constructor: 
MkMdError : MdErrorType->Int->Int->String->MdError

Projections:
.column : MdError->Int
.errorType : MdError->MdErrorType
.line : MdError->Int
.msg : MdError->String

Hint: 
ShowMdError
.errorType : MdError->MdErrorType
Visibility: public export
errorType : MdError->MdErrorType
Visibility: public export
.line : MdError->Int
Visibility: public export
line : MdError->Int
Visibility: public export
.column : MdError->Int
Visibility: public export
column : MdError->Int
Visibility: public export
.msg : MdError->String
Visibility: public export
msg : MdError->String
Visibility: public export
fromParsingError : ParsingErrortok->MdError
  Converts a parsing error to a markdown error.

Visibility: export