asciidoc-0.1: test/asciidoctor/sidebar/with-id-and-role.test
[#origin.center]
****
AsciiDoc was first released in Nov 2002 by Stuart Rackham.
It was designed from the start to be a shorthand syntax
for producing professional documents like DocBook and LaTeX.
****
>>>
Document
{ docMeta =
Meta
{ docTitle = []
, docTitleAttributes = Nothing
, docAuthors = []
, docRevision = Nothing
, docAttributes = fromList [ ( "sectids" , "" ) ]
}
, docBlocks =
[ Block
Attr
( [] , fromList [ ( "id" , "origin" ) , ( "role" , "center" ) ] )
Nothing
(Sidebar
[ Block
mempty
Nothing
(Paragraph
[ Inline
mempty
(Str
"AsciiDoc was first released in Nov 2002 by Stuart Rackham.\nIt was designed from the start to be a shorthand syntax\nfor producing professional documents like DocBook and LaTeX.")
])
])
]
}