tech.kronicle.utils.MarkdownHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kronicle-utils Show documentation
Show all versions of kronicle-utils Show documentation
Kronicle utils library that contains utility classes for use by Kronicle and its plugins
package tech.kronicle.utils;
public final class MarkdownHelper {
public static String createMarkdownLink(String text, String url) {
return String.format("[%s](%s)", text, url);
}
private MarkdownHelper() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy