comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:f8b1ea49d065
1 /*
2 * Transformer.java
3 *
4 * Created on May 9, 2006, 6:47 PM
5 *
6 * To change this template, choose Tools | Template Manager
7 * and open the template in the editor.
8 */
9
10 package org.nwoca.ssdt.tools.html2wiki;
11
12 /**
13 *
14 * @author SMITH
15 */
16 public interface Transformer {
17 public void apply(StringBuffer buffer);
18
19 }