}
@Override
public HTMLBuilder withParentTag() {
if (document.size() <= 1) {
throw new ExcelConversionException("Trying to add content above the HTML root element");
}
@SuppressWarnings("unchecked")
Stack<Tag> higherUp = (Stack<Tag>) document.clone();
higherUp.pop();
return new HTMLBuilderImpl(higherUp, top);