Interface CukedoctorConverter

  • All Known Implementing Classes:
    CukedoctorConverterImpl

    public interface CukedoctorConverter
    Created by pestano on 02/06/15.
    • Method Detail

      • getDocumentation

        String getDocumentation()
      • renderDocumentation

        String renderDocumentation()
        Returns:
        a string representation of the current document in Asciidoctor format
      • getDocumentationTitle

        String getDocumentationTitle()
      • renderFeatures

        @Deprecated
        CukedoctorConverter renderFeatures​(List<Feature> features)
        Deprecated.
        Use an appropriate instance of FeatureRenderer to render the document features only e.g. CukedoctorFeatureRenderer
        Parameters:
        features - the features to render
        Returns:
        underlying Converter instance
      • renderFeatures

        @Deprecated
        CukedoctorConverter renderFeatures()
        Deprecated.
        Use an appropriate instance of FeatureRenderer to render the document features only e.g. CukedoctorFeatureRenderer
        Returns:
        underlying Converter instance
      • renderAttributes

        @Deprecated
        CukedoctorConverter renderAttributes()
        Deprecated.
        Use an appropriate instance of HeaderRenderer to render the document attributes only e.g. CukedoctorHeaderRenderer
        Returns:
        underlying Converter instance
      • renderSummary

        @Deprecated
        CukedoctorConverter renderSummary()
        Deprecated.
        Use an appropriate instance of SummaryRenderer to render the document summary only e.g. CukedoctorSummaryRenderer
        Returns:
        underlying Converter instance
      • setFilename

        CukedoctorConverter setFilename​(String filename)
        set output file name without extension (should always be .adoc or other asciidoc compatible extensions) If no filename is set then Documentation title (first H1 section) will be used as filename (underline will be used to remove spaces) The filename is used mainly for asciidoc docinfo creation.
        Parameters:
        filename - name to be set
        Returns:
        underlying Converter instance
      • getFilename

        String getFilename()