mirror of
https://github.com/anthropics/skills.git
synced 2026-08-02 13:05:28 +08:00
4e6907a33c
docx: Add commenting and track-changes support. Reorganize OOXML tooling into a shared office/ module. pptx: Streamline SKILL.md, add slide-editing and pptxgenjs guides, bundle html2pptx as a tgz. Reorganize OOXML tooling into a shared office/ module. xlsx: Move recalc script into scripts/ and expand it. Add shared office/ module for OOXML pack/unpack/validate. pdf: Improve form-filling workflow with new form-structure extraction script and updated field-info extraction.
13 lines
535 B
XML
13 lines
535 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="urn:schemas-microsoft-com:office:powerpoint"
|
|
targetNamespace="urn:schemas-microsoft-com:office:powerpoint" elementFormDefault="qualified"
|
|
attributeFormDefault="unqualified">
|
|
<xsd:element name="iscomment" type="CT_Empty"/>
|
|
<xsd:element name="textdata" type="CT_Rel"/>
|
|
<xsd:complexType name="CT_Empty"/>
|
|
<xsd:complexType name="CT_Rel">
|
|
<xsd:attribute name="id" type="xsd:string"/>
|
|
</xsd:complexType>
|
|
</xsd:schema>
|