asciidoc-0.1: test/feature/attrefs/basic.test
= Title
:foo: 333
{foo} and *{foo}*
>>>
Document
{ docMeta =
Meta
{ docTitle = [ Inline mempty (Str "Title") ]
, docTitleAttributes = Nothing
, docAuthors = []
, docRevision = Nothing
, docAttributes =
fromList [ ( "foo" , "333" ) , ( "sectids" , "" ) ]
}
, docBlocks =
[ Block
mempty
Nothing
(Paragraph
[ Inline mempty (Str "333")
, Inline mempty (Str " and ")
, Inline mempty (Bold [ Inline mempty (Str "333") ])
])
]
}