From: James Moger Date: Fri, 28 Feb 2014 20:21:03 +0000 (-0500) Subject: Add simplified transformGFM method to MarkdownUtils X-Git-Tag: v1.4.0~84 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=02119875d182c4c2bb29aef75971c8de0b5f28a8;p=gitblit.git Add simplified transformGFM method to MarkdownUtils --- diff --git a/src/main/java/com/gitblit/utils/MarkdownUtils.java b/src/main/java/com/gitblit/utils/MarkdownUtils.java index 11a5e340..2ce6f566 100644 --- a/src/main/java/com/gitblit/utils/MarkdownUtils.java +++ b/src/main/java/com/gitblit/utils/MarkdownUtils.java @@ -21,11 +21,15 @@ import static org.pegdown.Extensions.SMARTYPANTS; import java.io.IOException; import java.io.Reader; import java.io.StringWriter; +import java.text.MessageFormat; import org.apache.commons.io.IOUtils; import org.pegdown.LinkRenderer; import org.pegdown.PegDownProcessor; +import com.gitblit.IStoredSettings; +import com.gitblit.Keys; + /** * Utility methods for transforming raw markdown text to html. * @@ -96,4 +100,45 @@ public class MarkdownUtils { } } } + + + /** + * Transforms GFM (Github Flavored Markdown) to html. + * Gitblit does not support the complete GFM specification. + * + * @param input + * @param repositoryName + * @return html + */ + public static String transformGFM(IStoredSettings settings, String input, String repositoryName) { + String text = input; + + // strikethrough + text = text.replaceAll("~~(.*)~~", "$1"); + text = text.replaceAll("\\{(?:-){2}(.*)(?:-){2}}", "$1"); + + // underline + text = text.replaceAll("\\{(?:\\+){2}(.*)(?:\\+){2}}", "$1"); + + // strikethrough, replacement + text = text.replaceAll("\\{~~(.*)~>(.*)~~}", "$1$2"); + + // highlight + text = text.replaceAll("\\{==(.*)==}", "$1"); + + String canonicalUrl = settings.getString(Keys.web.canonicalUrl, "https://localhost:8443"); + + // emphasize and link mentions + String mentionReplacement = String.format(" **@$1**", canonicalUrl); + text = text.replaceAll("\\s@([A-Za-z0-9-_]+)", mentionReplacement); + + // link commit shas + int shaLen = settings.getInteger(Keys.web.shortCommitIdLength, 6); + String commitPattern = MessageFormat.format("\\s([A-Fa-f0-9]'{'{0}'}')([A-Fa-f0-9]'{'{1}'}')", shaLen, 40 - shaLen); + String commitReplacement = String.format(" $1", canonicalUrl, repositoryName); + text = text.replaceAll(commitPattern, commitReplacement); + + String html = transformMarkdown(text); + return html; + } }