Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split out processing directives, comments, and other special "elements" #250

Closed
michaelrsweet opened this issue Mar 2, 2019 · 2 comments
Assignees
Labels
enhancement New feature or request priority-medium
Milestone

Comments

@michaelrsweet
Copy link
Owner

michaelrsweet commented Mar 2, 2019

Currently we lump all <something> constructs into the MXML_ELEMENT node type. Break those out to make it easier to support them.

@michaelrsweet michaelrsweet added the enhancement New feature or request label Mar 2, 2019
@michaelrsweet michaelrsweet added this to the v4.0 milestone Mar 2, 2019
@michaelrsweet michaelrsweet self-assigned this Mar 2, 2019
@michaelrsweet
Copy link
Owner Author

michaelrsweet commented Feb 28, 2024

Specifically want to add:

MXML_TYPE_COMMENT,   // Comment ("<!--something-->")
MXML_TYPE_CDATA,     // CDATA section ("<![CDATA[something]]>")
MXML_TYPE_DIRECTIVE, // Processing instruction ("<?something?>")

No support for other XML-like DTD representations such as "" or "", since those cannot exist in an XML document.

@michaelrsweet
Copy link
Owner Author

[master 0cd995c] Add separate node types for comments, CDATA, directives, and declarations (Issue #250)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request priority-medium
Projects
None yet
Development

No branches or pull requests

1 participant