HTML.BlockWrapper.txt 571 B

123456789101112131415161718
  1. HTML.BlockWrapper
  2. TYPE: string
  3. VERSION: 1.3.0
  4. DEFAULT: 'p'
  5. --DESCRIPTION--
  6. <p>
  7. String name of element to wrap inline elements that are inside a block
  8. context. This only occurs in the children of blockquote in strict mode.
  9. </p>
  10. <p>
  11. Example: by default value,
  12. <code>&lt;blockquote&gt;Foo&lt;/blockquote&gt;</code> would become
  13. <code>&lt;blockquote&gt;&lt;p&gt;Foo&lt;/p&gt;&lt;/blockquote&gt;</code>.
  14. The <code>&lt;p&gt;</code> tags can be replaced with whatever you desire,
  15. as long as it is a block level element.
  16. </p>
  17. --# vim: et sw=4 sts=4