packages feed

asciidoc-0.1: test/feature/crossref/basic.test

[#mysec]
== My section

In <<mysec>>, and in <<myanch>>

[[myanch,My anchor]]
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [] , fromList [ ( "id" , "mysec" ) ] )
          Nothing
          (Section
             (Level 1)
             [ Inline mempty (Str "My section") ]
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "In ")
                    , Inline
                        mempty
                        (CrossReference
                           "mysec" (Just [ Inline mempty (Str "My section") ]))
                    , Inline mempty (Str ", and in ")
                    , Inline
                        mempty
                        (CrossReference
                           "myanch" (Just [ Inline mempty (Str "My anchor") ]))
                    ])
             , Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline
                        mempty (InlineAnchor "myanch" [ Inline mempty (Str "My anchor") ])
                    ])
             ])
      ]
  }