packages feed

asciidoc-0.1: test/asciidoctor/inline_anchor/xref-reftext.test

Refer to <<install>>.

[#install, reftext="Installation Procedure"]
== Installation
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (Paragraph
             [ Inline mempty (Str "Refer to ")
             , Inline
                 mempty
                 (CrossReference
                    "install" (Just [ Inline mempty (Str "Installation") ]))
             , Inline mempty (Str ".")
             ])
      , Block
          Attr
          ( []
          , fromList
              [ ( "id" , "install" ) , ( "reftext" , "Installation Procedure" ) ]
          )
          Nothing
          (Section (Level 1) [ Inline mempty (Str "Installation") ] [])
      ]
  }