mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-08 18:46:12 +00:00
Fixed: #2325 AS3 direct editation - allow single quoted attributes in XML
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -556,9 +556,13 @@ public enum SymbolType {
|
||||
*/
|
||||
XML_ATTRIBUTENAME(GraphTargetItem.PRECEDENCE_PRIMARY, false), // aaa=
|
||||
/**
|
||||
* XML: attribute value
|
||||
* XML: attribute value, double quoted
|
||||
*/
|
||||
XML_ATTRIBUTEVALUE(GraphTargetItem.PRECEDENCE_PRIMARY, false), // "vvv"
|
||||
/**
|
||||
* XML: attribute value, single quoted
|
||||
*/
|
||||
XML_ATTRIBUTEVALUE_SINGLEQUOTED(GraphTargetItem.PRECEDENCE_PRIMARY, false), // 'vvv'
|
||||
/**
|
||||
* XML: text
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user