Back to project page tpblogr.
The source code is released under:
MIT License
If you think the Android project tpblogr listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package blogr.vpm.fr.blogr.publish; /*from w ww . ja v a2 s . c o m*/ /** * Created by vincent on 19/10/14. * <p/> * Format the markdown content to any output format defined by the implementation */ public interface Formatter { /** * Formats markdown content to another format * * @param content the content to format * @return the formatted content */ String format(String content); }