diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 19:25:54 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 19:25:54 -0700 |
commit | 8d2633f62af1a37eb3ca2ae9415a8ed9a2bc7f6f (patch) | |
tree | 361edd53b85a66cbde6fcff13864eecc454b097e /src | |
parent | 2453227890fc744f9abcc87c472f0ce98de9e450 (diff) |
Fixed regex for processing instruction.
We now handle properly `<?php echo '>'; ?>`.
Closes #117.
Diffstat (limited to 'src')
-rw-r--r-- | src/scanners.re | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanners.re b/src/scanners.re index 28aba9d..5ec1bf3 100644 --- a/src/scanners.re +++ b/src/scanners.re @@ -36,7 +36,7 @@ htmlcomment = "!--" ([^-\x00]+ | [-][^-\x00]+)* "-->"; - processinginstruction = "?" ([^?>\x00]+ | [?][^>\x00])* "?>"; + processinginstruction = "?" ([^?>\x00]+ | [?][^>\x00] | [>])* "?>"; declaration = "!" [A-Z]+ spacechar+ [^>\x00]* ">"; |