We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_
1 parent 6482ef2 commit 90c04f1Copy full SHA for 90c04f1
src/Models/TemplateEngine.cs
@@ -313,7 +313,7 @@ private string ParseReplacement()
313
314
private static bool IsNameChar(char c)
315
{
316
- return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9');
+ return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '_';
317
}
318
319
// (?) notice or log if variable is not found
0 commit comments