Skip to content

Commit

Permalink
Added STRIKETHROUGH to markdown.extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
uli-heller committed Feb 3, 2015
1 parent fac4a32 commit d67219e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/jbake/parser/MarkdownEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ private int extensionFor(String name) {
extension = Extensions.TABLES;
} else if (name.equals("WIKILINKS")) {
extension = Extensions.WIKILINKS;
//} else if (name.equals("ANCHORLINKS")) { // not available in pegdown-1.4.2
// extension = Extensions.ANCHORLINKS;
} else if (name.equals("STRIKETHROUGH")) {
extension = Extensions.STRIKETHROUGH;
} else if (name.equals("ALL")) {
extension = Extensions.ALL;
}
Expand Down

0 comments on commit d67219e

Please sign in to comment.