tmedwards / sugarcube-2

SugarCube is a free (gratis and libre) story format for Twine/Twee.
https://www.motoslave.net/sugarcube/2/
BSD 2-Clause "Simplified" License
177 stars 41 forks source link

bad parserlib regex for `<style>` and `<script>` tags #238

Closed felix9 closed 2 months ago

felix9 commented 1 year ago

The lookahead pattern here in parserlib.js matches <style*> when it should be something like <style[^>]*> instead. There's a similar problem for <script> right above.

This means that tags like <style id=x> or <script type=y> don't work.

<style> and <script> without attributes are fine.