packages feed

asciidoc-0.1: test/asciidoctor/inline_footnote/basic.test

Apocalyptic party.footnote:[The double hail-and-rainbow level makes my toes tingle.]
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (Paragraph
             [ Inline mempty (Str "Apocalyptic party.")
             , Inline
                 mempty
                 (Footnote
                    Nothing
                    [ Inline
                        mempty
                        (Str "The double hail-and-rainbow level makes my toes tingle.")
                    ])
             ])
      ]
  }