Class HTMLRenderingEngine

  • All Implemented Interfaces:
    ActionExecuter, LoggingAwareExecuter, org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanNameAware

    @Deprecated
    public class HTMLRenderingEngine
    extends AbstractRenderingEngine
    Deprecated.
    The RenditionService is being replace by the simpler async RenditionService2.
    This class provides a way to turn documents supported by the ContentService standard transformers into basic, clean HTML.

    The HTML that is produced probably isn't going to be suitable for direct web publishing, as it's likely going to be too basic. Instead, it should be simple and clean HTML, suitable for being the basis of some web-friendly HTML once edited / further transformed.

    Since:
    3.4
    Author:
    Nick Burch
    • Field Detail

      • PARAM_BODY_CONTENTS_ONLY

        public static final java.lang.String PARAM_BODY_CONTENTS_ONLY
        Deprecated.
        This optional parameter, when set to true, causes only the contents of the HTML body to be written out as the rendition. By default, the whole of the HTML document is used.
        See Also:
        Constant Field Values
      • PARAM_IMAGES_SAME_FOLDER

        public static final java.lang.String PARAM_IMAGES_SAME_FOLDER
        Deprecated.
        This optional parameter, when set to true, causes any embedded images to be written into the same folder as the html, with a name prefix. By default, images are placed into a sub-folder.
        See Also:
        Constant Field Values
    • Constructor Detail

      • HTMLRenderingEngine

        public HTMLRenderingEngine()
        Deprecated.