packages feed

asciidoc-0.1: test/asciidoctor/inline_anchor/bibref.test

// This is an item (anchor) in the bibliography, not a link to it.
[bibliography]
* [[[prag]]] Andy Hunt & Dave Thomas. The Pragmatic Programmer
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [ "bibliography" ] , fromList [] )
          Nothing
          (List
             (BulletList (Level 1))
             [ ListItem
                 Nothing
                 [ Block
                     mempty
                     Nothing
                     (Paragraph
                        [ Inline mempty (BibliographyAnchor "prag" [])
                        , Inline
                            mempty (Str "Andy Hunt & Dave Thomas. The Pragmatic Programmer")
                        ])
                 ]
             ])
      ]
  }