up vote 18 down vote favorite
20
share [g+] share [fb]

is there an easy way to transform HTML into markdown with JAVA?

I am currently using the Java MarkdownJ library to transform markdown to html.

import com.petebevin.markdown.MarkdownProcessor;
...
public static String getHTML(String markdown) {
    MarkdownProcessor markdown_processor = new MarkdownProcessor();
    return markdown_processor.markdown(markdown);
}

public static String getMarkdown(String html) {
/* TODO Ask stackoverflow */
}
link|improve this question

60% accept rate
feedback

3 Answers

up vote 21 down vote accepted

Use this XSLT.

If you need help using XSLT and Java here's a code snippet:

public static void main(String[] args) throws Exception {

        File xsltFile = new File("mardownXSLT.xslt");

        Source xmlSource = new StreamSource(new StringReader(theHTML));
        Source xsltSource = new StreamSource(xsltFile);

        TransformerFactory transFact =
                TransformerFactory.newInstance();
        Transformer trans = transFact.newTransformer(xsltSource);

        StringWriter result = new StringWriter();
        trans.transform(xmlSource, new StreamResult(result));
    }
link|improve this answer
1  
+1, that's brilliant. – Ninefingers Sep 6 '10 at 21:49
1  
IMPORTANT : this XSLT is distributed under a CC-share-alike license, that means : "If you [...] build upon this work, you may distribute the resulting work only under the same or similar license to this one" – cx42net May 3 '11 at 15:10
@cx42net - it's not SO important))) In many countries CC-share-alike license does not have any legal power AT ALL ;) – shabunc Jan 12 at 13:58
The remaining question is, shall I publish only the work around code, or my whole project? – cx42net Jan 12 at 16:10
feedback

I am working on the same issue, and experimenting with a couple different techniques.

The answer above could work. You could use the jTidy library to do the initial cleanup work and convert from HTML to XHTML. You use the XSLT stylesheet linked above.

Unfortunately there is no library that has a one-stop function to do this in Java. You could try using the Python script html2text with Jython, but I haven't yet tried this!

link|improve this answer
feedback

if you are using WMD editor and want to get the markdown code on the server side, just use these options before loading the wmd.js script:

wmd_options = {
		// format sent to the server.  can also be "HTML"
		output: "Markdown",

		// line wrapping length for lists, blockquotes, etc.
		lineLength: 40,

		// toolbar buttons.  Undo and redo get appended automatically.
		buttons: "bold italic | link blockquote code image | ol ul heading hr",

		// option to automatically add WMD to the first textarea found.
		autostart: true
	};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.