top / index / prev / next / target / source
日記形式でつづる いがぴょんコラム ウェブページです。
Eclipse Mylyn ライブラリをもちいて Markdown を html に変換する Java コードは以下のようになります。
import org.eclipse.mylyn.wikitext.core.parser.MarkupParser;
import org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder;
import org.eclipse.mylyn.wikitext.markdown.core.MarkdownLanguage;
final HtmlDocumentBuilder builder = new HtmlDocumentBuilder(writer);
// without head and body.
builder.setEmitAsDocument(false);
final MarkupParser parser = new MarkupParser(new MarkdownLanguage(),
builder);
parser.parse("# top");