eventlog2html-0.11.0: Visualise an eventlog
Safe HaskellSafe-Inferred
LanguageHaskell2010

Eventlog.Rendering.Types

Synopsis

Documentation

newtype TabID Source #

Tab IDs must be usable as HTML and Javascript identifiers, so we allow a limited selection of characters. This is enforced only at runtime by mkTabID and the IsString instance, but that seems good enough for now.

Constructors

TabID Text 

Instances

Instances details
IsString TabID Source # 
Instance details

Defined in Eventlog.Rendering.Types

Methods

fromString :: String -> TabID #

data Tab Source #

Constructors

Tab 

Fields

mkOptionalTab :: String -> TabID -> (a -> Html) -> Maybe Html -> Html -> Maybe a -> Tab Source #