ppt-rs 0.2.14

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
<!DOCTYPE html>
<html>
<head><title>Complex Test</title></head>
<body>
    <h1>Welcome</h1>
    <p>Introduction paragraph with <strong>bold</strong> and <em>italic</em> text.</p>
    <p>Another paragraph here.</p>

    <h1>Data &amp; Code</h1>
    <table>
        <tr><th>Item</th><th>Count</th><th>Status</th></tr>
        <tr><td>Widget</td><td>42</td><td>Active</td></tr>
        <tr><td>Gadget</td><td>17</td><td>Inactive</td></tr>
    </table>
    <pre><code>fn process() {
    let items = get_items();
    for item in items {
        println!("{item}");
    }
}</code></pre>
    <blockquote>This is a complex slide with multiple element types.</blockquote>

    <h1>List Slide</h1>
    <ul>
        <li>First item</li>
        <li>Second item with <strong>bold</strong> segment</li>
        <li>Third item
            <ul>
                <li>Nested item</li>
            </ul>
        </li>
    </ul>

    <h1>Image Placeholder</h1>
    <p>Slide demonstrating image support.</p>
    <img src="photo.jpg" alt="Demo Photo">
    <hr>
    <p>Content after horizontal rule.</p>
</body>
</html>