packages feed

asciidoc-0.1: test/asciidoctor/inline_image/image-with-link.test

image:linux.svg[link="http://inkscape.org/doc/examples/tux.svg"]
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (Paragraph
             [ Inline
                 Attr
                 ( []
                 , fromList
                     [ ( "link" , "http://inkscape.org/doc/examples/tux.svg" ) ]
                 )
                 (InlineImage (Target "linux.svg") Nothing Nothing Nothing)
             ])
      ]
  }