All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.bliki.wiki.tags.WPPreTag Maven / Gradle / Ivy

The newest version!
package info.bliki.wiki.tags;

import info.bliki.wiki.filter.ITextConverter;
import info.bliki.wiki.model.IWikiModel;

import java.io.IOException;

/**
 * A wiki block starting with a space on each line, rendered with the HTML
 * pre Tag
 *
 * @see PreTag
 */
public class WPPreTag extends HTMLBlockTag {
    public WPPreTag() {
        super("pre", null);
    }

    @Override
    public Object clone() {
        WPPreTag wppt = new WPPreTag();
        return wppt;
    }

    @Override
    public void renderHTML(ITextConverter converter, Appendable buf, IWikiModel model) throws IOException {
        super.renderHTML(converter, buf, model);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy