HTML.BlockWrapper TYPE: string VERSION: 1.3.0 DEFAULT: 'p' --DESCRIPTION--
String name of element to wrap inline elements that are inside a block context. This only occurs in the children of blockquote in strict mode.
Example: by default value,
<blockquote>Foo</blockquote>
would become
<blockquote><p>Foo</p></blockquote>
.
The <p>
tags can be replaced with whatever you desire,
as long as it is a block level element.