mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-04 00:03:01 -08:00
Allow widget names to include digits
This commit is contained in:
parent
8c73d8db4b
commit
f1a7e433ab
1 changed files with 1 additions and 1 deletions
|
|
@ -319,7 +319,7 @@ exports.parseTag = function(source,pos,options) {
|
|||
attributes: {}
|
||||
};
|
||||
// Define our regexps
|
||||
var reTagName = /([a-zA-Z\-\$]+)/g;
|
||||
var reTagName = /([a-zA-Z0-9\-\$]+)/g;
|
||||
// Skip whitespace
|
||||
pos = this.skipWhiteSpace(source,pos);
|
||||
// Look for a less than sign
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue