Skip to content

Commit

Permalink
Improve Regex
Browse files Browse the repository at this point in the history
  • Loading branch information
foivospro committed Oct 5, 2024
1 parent 268390b commit d1916c5
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 103 deletions.
Binary file modified db/blockly_unix_database.db
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@
{ kind: 'block', type: 'regFor' },
{ kind: 'block', type: 'regRange' },
{ kind: 'block', type: 'regStart' },
{ kind: 'block', type: '$' },
{ kind: 'block', type: 'regEnd' },
{ kind: 'block', type: 'regAnyOne' },
{ kind: 'block', type: 'regCapturingGroup' },
{ kind: 'block', type: 'regAlternation' },
Expand Down
2 changes: 1 addition & 1 deletion public/blocks/regEndBlock.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var regEndBlock = {
type: '$',
type: 'regEnd',
category: 'Regular Expressions',
unix_description: [
{
Expand Down
3 changes: 2 additions & 1 deletion public/blocks/regForBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ var regForBlock = {
},
{
type: 'field_number',
name: 'TO'
name: 'TO',
value: 0
},
{
type: 'field_checkbox',
Expand Down
Loading

0 comments on commit d1916c5

Please sign in to comment.