com.litongjava.tio.utils.markdown.MdUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.markdown;
public class MdUtils {
public static String code(String languageName, String string) {
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append("\n");
stringBuffer.append("```").append(languageName).append("\n");
stringBuffer.append(string).append("\n");
stringBuffer.append("```").append("\n");
return stringBuffer.toString();
}
}