packages feed

asciidoc-0.1: test/asciidoctor/inline_quoted/mixed-monospace-bold-italic.test

`*_monospace bold italic phrase_*` and le``**__tt__**``ers
>>>
Document
  { docMeta =
      Meta
        { docTitle = []
        , docTitleAttributes = Nothing
        , docAuthors = []
        , docRevision = Nothing
        , docAttributes = fromList [ ( "sectids" , "" ) ]
        }
  , docBlocks =
      [ Block
          mempty
          Nothing
          (Paragraph
             [ Inline
                 mempty
                 (Monospace
                    [ Inline
                        mempty
                        (Bold
                           [ Inline
                               mempty
                               (Italic [ Inline mempty (Str "monospace bold italic phrase") ])
                           ])
                    ])
             , Inline mempty (Str " and le")
             , Inline
                 mempty
                 (Monospace
                    [ Inline
                        mempty
                        (Bold [ Inline mempty (Italic [ Inline mempty (Str "tt") ]) ])
                    ])
             , Inline mempty (Str "ers")
             ])
      ]
  }