packages feed

asciidoc-0.1: test/asciidoctor/inline_break/hardbreaks.test

[%hardbreaks]
Ruby is red.
Java is black.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [] , fromList [ ( "options" , "hardbreaks" ) ] )
          Nothing
          (Paragraph
             [ Inline mempty (Str "Ruby is red.")
             , Inline mempty HardBreak
             , Inline mempty (Str "Java is black.")
             ])
      ]
  }