ligasgr / intellij-xquery

Plugin to support XQuery in Intellij Idea
Apache License 2.0
35 stars 23 forks source link

Adding closing quotes to an XML attribute adds an extra quote #190

Closed rhdunn closed 8 years ago

rhdunn commented 8 years ago

Given:

<test attr="hello>

Adding the closing quote results in:

<test attr="hello"">

NOTE: This is correctly handled in XQuery strings. That is, adding a closing quote to:

let $test := "hello

only adds a single quote:

let $test := "hello"