Editing Processing Instructions Using Form Controls

Oxygen XML Editor allows you to edit processing instructions, comments, and CDATA by using the built-in editors.

Oxygen XML Editor allows you to edit processing instructions, comments, and CDATA by using the built-in editors.

Note

You can edit both the content and the attribute value from a processing instruction.

Editing an Attribute from a Processing Instruction

PI content

<?pi_target attr="val"?>

CSS

oxy|processing-instruction:before {
    display:inline;
    content: 
        "EDIT attribute: " oxy_textfield(edit, '@attr', columns, 15);
    visibility:visible;
}
oxy|processing-instruction{
    visibility:-oxy-collapse-text;
}

Was this helpful?