private void addDocForExample( final List<Doc> docs, final String example ) {
if ( !isEmpty( example ) ) {
final Doc doc = new Doc();
final Elements pElement = Elements.el( "p" )
.add( Elements.val( "h6", "Example" ) )
.add( Elements.el( "pre" ).add( Elements.val( "code", example ) ) );
doc.getContent().add( pElement );
docs.add( doc );