Skip to content

Commit

Permalink
Revert "omit unnecessary instructions"
Browse files Browse the repository at this point in the history
This reverts commit b215e22.
  • Loading branch information
ssahara committed Nov 2, 2020
1 parent bdc6280 commit 6f47045
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntax.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ public function handle($match, $state, $pos, Doku_Handler $handler)
{
switch ($state) {
case DOKU_LEXER_ENTER :
//return $data = array($state, '');
return $data = array($state, '');
break;
case DOKU_LEXER_UNMATCHED :
return $data = array($state, $match);
break;
case DOKU_LEXER_EXIT :
//return $data = array($state, '');
return $data = array($state, '');
break;
}
return $data = false;
Expand Down

1 comment on commit 6f47045

@ssahara
Copy link
Owner Author

@ssahara ssahara commented on 6f47045 Nov 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope this will fix issue of conflicts with EditTable plugin, see it is possible to make this plugin compatible with the plugin encryptedpasswords #194

Please sign in to comment.