packages feed

asciidoc-0.1: test/asciidoctor/dlist/horizontal-with-dimensions.test

[horizontal, labelwidth="20", itemwidth="50%"]
Hard drive:: Permanent storage for operating system and/or user files.
RAM:: Temporarily stores information the CPU uses during operation.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [ "horizontal" ]
          , fromList [ ( "itemwidth" , "50%" ) , ( "labelwidth" , "20" ) ]
          )
          Nothing
          (DefinitionList
             [ ( [ Inline mempty (Str "Hard drive") ]
               , [ Block
                     mempty
                     Nothing
                     (Paragraph
                        [ Inline
                            mempty
                            (Str "Permanent storage for operating system and/or user files.")
                        ])
                 ]
               )
             , ( [ Inline mempty (Str "RAM") ]
               , [ Block
                     mempty
                     Nothing
                     (Paragraph
                        [ Inline
                            mempty
                            (Str
                               "Temporarily stores information the CPU uses during operation.")
                        ])
                 ]
               )
             ])
      ]
  }