SourceFormatX

CodeMorph

CodeToHtml

Overview

Features

Code To HTML

Output Styles

Screenshots

FAQs & Tips

Update History

License Policy

Code2Html Output Styles


CodeToHtml code-to-html converter provides several predefined common output styles.

  Eclipse Style

/**
 * This is about <code>ClassName</code>.
 {@link com.yourCompany.aPackage.SuperClass}
 @author author
 */
public class ClassName extends SuperClass {
  /* This comment may span multiple lines. */
  private int integer = 0;
  public final static char character = 'A';
  // This comment may span only this line
  private String string = "zero";
}


  Kawa Style

/**
 * This is about <code>ClassName</code>.
 {@link com.yourCompany.aPackage.SuperClass}
 @author author
 */
public class ClassName extends SuperClass {
  /* This comment may span multiple lines. */
  private int integer = 0;
  public final static char character = 'A';
  // This comment may span only this line
  private String string = "zero";
}


  Monochrome Style

/**
 * This is about <code>ClassName</code>.
 {@link com.yourCompany.aPackage.SuperClass}
 @author author
 */
public class ClassName extends SuperClass {
  /* This comment may span multiple lines. */
  private int integer = 0;
  public final static char character = 'A';
  // This comment may span only this line
  private String string = "zero";
}