Skip to content

Commit

Permalink
Fixes #317.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbullock committed Jan 27, 2017
1 parent a39ef61 commit c4e7b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jbake/app/Oven.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Oven {

private final static Logger LOGGER = LoggerFactory.getLogger(Oven.class);

private final static Pattern TEMPLATE_DOC_PATTERN = Pattern.compile("(?:template\\.)([a-zA-Z0-9]+)(?:\\.file)");
private final static Pattern TEMPLATE_DOC_PATTERN = Pattern.compile("(?:template\\.)([a-zA-Z0-9-_]+)(?:\\.file)");

private CompositeConfiguration config;
private File source;
Expand Down

0 comments on commit c4e7b98

Please sign in to comment.