This is an automated email from the ASF dual-hosted git repository.
ddekany pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/freemarker-docgen.git
The following commit(s) were added to refs/heads/master by this push:
new 8a2a862 Replaced [docgen:wd] with [docgen.wd].
8a2a862 is described below
commit 8a2a862e757ee69c75ea27ec8cb845537bb09ee7
Author: ddekany <[email protected]>
AuthorDate: Tue Feb 9 09:06:29 2021 +0100
Replaced [docgen:wd] with [docgen.wd].
---
.../docgen/core/PrintTextWithDocgenSubstitutionsDirective.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/freemarker-docgen-core/src/main/java/org/freemarker/docgen/core/PrintTextWithDocgenSubstitutionsDirective.java
b/freemarker-docgen-core/src/main/java/org/freemarker/docgen/core/PrintTextWithDocgenSubstitutionsDirective.java
index 3975c43..b245e94 100644
---
a/freemarker-docgen-core/src/main/java/org/freemarker/docgen/core/PrintTextWithDocgenSubstitutionsDirective.java
+++
b/freemarker-docgen-core/src/main/java/org/freemarker/docgen/core/PrintTextWithDocgenSubstitutionsDirective.java
@@ -127,7 +127,7 @@ public class PrintTextWithDocgenSubstitutionsDirective
implements TemplateDirect
new DocgenSubstitutionInterpreter(text, env).execute();
}
- private static final String DOCGEN_WD_TAG = "[docgen:wd]";
+ private static final String DOCGEN_WD_TAG = "[docgen.wd]";
private static final Pattern DOCGEN_WD_TAG_AND_SLASH_PATTERN =
Pattern.compile(Pattern.quote(DOCGEN_WD_TAG) + "/?");
private class DocgenSubstitutionInterpreter {