diff src/org/nwoca/ssdt/tools/html2wiki/Transformer.java @ 0:f8b1ea49d065

Initial version of crude HTML to WikiText converter. Customized for converting HTML files from DEC Document into Wiki markup.
author smith@nwoca.org
date Fri, 12 May 2006 16:45:42 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/nwoca/ssdt/tools/html2wiki/Transformer.java	Fri May 12 16:45:42 2006 -0400
@@ -0,0 +1,19 @@
+/*
+ * Transformer.java
+ *
+ * Created on May 9, 2006, 6:47 PM
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+package org.nwoca.ssdt.tools.html2wiki;
+
+/**
+ *
+ * @author SMITH
+ */
+public interface Transformer {
+           public void apply(StringBuffer buffer);
+ 
+}