packages feed

asciidoc-0.1: test/asciidoctor/admonition/tip-with-id-and-role.test

[#tip-1.blue]
TIP: This is a tip with id and role.
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          Attr
          ( [] , fromList [ ( "id" , "tip-1" ) , ( "role" , "blue" ) ] )
          Nothing
          (Admonition
             Tip
             [ Block
                 mempty
                 Nothing
                 (Paragraph
                    [ Inline mempty (Str "This is a tip with id and role.") ])
             ])
      ]
  }