<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Slidize Team</title>
    <description>The latest articles on DEV Community by Slidize Team (@slidize).</description>
    <link>https://dev.to/slidize</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3022706%2F4be35467-a2b4-48ed-8771-a5b1b5ebf1ea.png</url>
      <title>DEV Community: Slidize Team</title>
      <link>https://dev.to/slidize</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/slidize"/>
    <language>en</language>
    <item>
      <title>Introducing slidize Plugins for Python</title>
      <dc:creator>Slidize Team</dc:creator>
      <pubDate>Sun, 18 May 2025 11:33:09 +0000</pubDate>
      <link>https://dev.to/slidize/introducing-slidize-plugins-for-python-4kjk</link>
      <guid>https://dev.to/slidize/introducing-slidize-plugins-for-python-4kjk</guid>
      <description>&lt;p&gt;We're pleased to share that &lt;strong&gt;slidize Plugins&lt;/strong&gt; are now available for Python developers. This release makes it easier to integrate presentation processing capabilities—such as format conversion, text extraction, and merging—into your Python applications.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing Slidize Plugins for Python
&lt;/h2&gt;

&lt;p&gt;Slidize Plugins is a lightweight Python library designed to manage and convert presentations across various formats. Whether you're dealing with PowerPoint, OpenDocument, or image formats, Slidize Plugins offers a comprehensive solution for your presentation processing needs.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Format Conversion&lt;/strong&gt;: Convert presentations to formats like PDF, PNG, JPEG, TIFF, SVG, and HTML.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Presentation Merging&lt;/strong&gt;: Combine multiple presentations into a single file effortlessly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Advanced Image Processing&lt;/strong&gt;: Control pixel format, resolution, and compression settings.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customizable Exports&lt;/strong&gt;: Tailor handout layouts, notes, and comments during export.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Broad Format Support&lt;/strong&gt;: Handle both PowerPoint 97-2003 and Open XML formats, as well as OpenDocument formats.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;You can install Slidize Plugins via pip:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;slidize-plugins
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Here's a simple example of converting a PowerPoint presentation to PDF:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;slidize&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;PresentationToPdfConverter&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;PdfConverterOptions&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;PdfComplianceLevel&lt;/span&gt;

&lt;span class="n"&gt;options&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;PdfConverterOptions&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;compliance_level&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;PdfComplianceLevel&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;PdfA1b&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;embed_full_fonts&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="bp"&gt;True&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;PresentationToPdfConverter&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;process&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;presentation.pptx&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;output.pdf&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;options&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For more examples and detailed documentation, visit the &lt;a href="https://docs.slidize.com/docs/Getting_Started.html" rel="noopener noreferrer"&gt;official documentation&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Licensing
&lt;/h2&gt;

&lt;p&gt;Slidize Plugins offers a flexible licensing system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Developer License&lt;/strong&gt;: \$99 for a perpetual license, including one year of support.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Site License&lt;/strong&gt;: \$297 for up to 10 developers and locations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SDK License&lt;/strong&gt;: \$495 for broader distribution needs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A 30-day free trial is also available. For more details, check out the &lt;a href="https://www.slidize.com/docs/perpetual-license-pricing/" rel="noopener noreferrer"&gt;pricing page&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Learn More
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PyPI Package&lt;/strong&gt;: &lt;a href="https://pypi.org/project/slidize-plugins/" rel="noopener noreferrer"&gt;slidize-plugins&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Documentation&lt;/strong&gt;: &lt;a href="https://docs.slidize.com/docs/Getting_Started.html" rel="noopener noreferrer"&gt;docs.slidize.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support&lt;/strong&gt;: &lt;a href="https://smallize.forumize.com/c/slidize/7" rel="noopener noreferrer"&gt;Free Support Forum&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Integrate slidize Plugins into your Python projects today and elevate your presentation processing capabilities!&lt;/p&gt;

</description>
      <category>python</category>
      <category>pptx</category>
      <category>presentation</category>
      <category>api</category>
    </item>
    <item>
      <title>Announcing the New slidize Plugin: Effortlessly Extract Text from PowerPoint Presentations in .NET</title>
      <dc:creator>Slidize Team</dc:creator>
      <pubDate>Thu, 17 Apr 2025 14:54:07 +0000</pubDate>
      <link>https://dev.to/slidize/announcing-the-new-slidize-plugin-effortlessly-extract-text-from-powerpoint-presentations-in-net-2mo9</link>
      <guid>https://dev.to/slidize/announcing-the-new-slidize-plugin-effortlessly-extract-text-from-powerpoint-presentations-in-net-2mo9</guid>
      <description>&lt;p&gt;We are excited to announce the release of our newest plugin in the &lt;a href="https://www.slidize.com/" rel="noopener noreferrer"&gt;slidize&lt;/a&gt; family: the &lt;a href="https://docs.slidize.com/docs/Presentation_TextExtractor_for_NET.html" rel="noopener noreferrer"&gt;&lt;strong&gt;PresentationTextExtractor&lt;/strong&gt;&lt;/a&gt;!&lt;/p&gt;

&lt;h2&gt;
  
  
  Effortless Text Extraction for Developers
&lt;/h2&gt;

&lt;p&gt;Have you ever needed to programmatically access text from PowerPoint files quickly and reliably? &lt;/p&gt;

&lt;p&gt;Whether you're handling large-scale data indexing, automated content analysis, accessibility improvements, or document automation, the &lt;a href="https://docs.slidize.com/api/Slidize.PresentationTextExtractor.html" rel="noopener noreferrer"&gt;&lt;strong&gt;PresentationTextExtractor&lt;/strong&gt;&lt;/a&gt; has you covered. Built specifically for .NET developers, this plugin seamlessly supports both legacy PowerPoint formats (97-2003) and modern Office Open XML presentations.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works: Simple and Fast
&lt;/h2&gt;

&lt;p&gt;Using the &lt;a href="https://docs.slidize.com/api/Slidize.PresentationTextExtractor.html" rel="noopener noreferrer"&gt;&lt;code&gt;PresentationTextExtractor&lt;/code&gt;&lt;/a&gt; couldn't be simpler. Here's how you quickly extract raw text without worrying about the text's arrangement:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight csharp"&gt;&lt;code&gt;&lt;span class="k"&gt;using&lt;/span&gt; &lt;span class="nn"&gt;Slidize&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="n"&gt;SlideText&lt;/span&gt;&lt;span class="p"&gt;[]&lt;/span&gt; &lt;span class="n"&gt;rawSlidesText&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;PresentationTextExtractor&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;Process&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"presentation.pptx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;TextExtractionMode&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Unarranged&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="k"&gt;foreach&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;var&lt;/span&gt; &lt;span class="n"&gt;slideText&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt; &lt;span class="n"&gt;rawSlidesText&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
     &lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Text&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;          &lt;span class="c1"&gt;// Slide text&lt;/span&gt;
     &lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;MasterText&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;    &lt;span class="c1"&gt;// Master slide text&lt;/span&gt;
     &lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;LayoutText&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;    &lt;span class="c1"&gt;// Layout text&lt;/span&gt;
     &lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;NotesText&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;     &lt;span class="c1"&gt;// Notes text&lt;/span&gt;
     &lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;CommentsText&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;  &lt;span class="c1"&gt;// Comments text&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Keep Text Organized and Accurate
&lt;/h2&gt;

&lt;p&gt;Need text exactly as it appears on your slides? The &lt;code&gt;PresentationTextExtractor&lt;/code&gt; makes it easy with the arranged extraction mode:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight csharp"&gt;&lt;code&gt;&lt;span class="k"&gt;using&lt;/span&gt; &lt;span class="nn"&gt;Slidize&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="n"&gt;SlideText&lt;/span&gt;&lt;span class="p"&gt;[]&lt;/span&gt; &lt;span class="n"&gt;arrangedSlidesText&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="n"&gt;PresentationTextExtractor&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;Process&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"presentation.pptx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;TextExtractionMode&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Arranged&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="k"&gt;using&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;var&lt;/span&gt; &lt;span class="n"&gt;outputFile&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="n"&gt;System&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;IO&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;StreamWriter&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"presentation-text.txt"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;false&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;foreach&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;var&lt;/span&gt; &lt;span class="n"&gt;slideText&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt; &lt;span class="n"&gt;arrangedSlidesText&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="n"&gt;outputFile&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;slideText&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;Text&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This mode ensures your extracted text precisely matches the original layout, ideal for maintaining the context and structure of your presentations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Choose PresentationTextExtractor?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Ease of Use:&lt;/strong&gt; A straightforward, intuitive API simplifies development.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Comprehensive Support:&lt;/strong&gt; Handles multiple PowerPoint and OpenOffice formats effortlessly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Performance:&lt;/strong&gt; Optimized for fast, efficient extraction—even from very large presentations (good for indexing!).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integration-Ready:&lt;/strong&gt; Seamlessly integrates into existing .NET applications and workflows.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Ready to experience simpler, faster text extraction?&lt;/p&gt;

&lt;p&gt;Get started today with &lt;strong&gt;PresentationTextExtractor&lt;/strong&gt; by slidize — streamlining your presentation processing tasks and enhancing your application's capabilities.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.slidize.com/download/" rel="noopener noreferrer"&gt;Try it now →&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>presentation</category>
      <category>pptx</category>
      <category>webdev</category>
    </item>
    <item>
      <title>What Is slidize and Why Do You Need It?</title>
      <dc:creator>Slidize Team</dc:creator>
      <pubDate>Sun, 06 Apr 2025 11:46:02 +0000</pubDate>
      <link>https://dev.to/slidize/what-is-slidize-and-why-do-you-need-it-2jcf</link>
      <guid>https://dev.to/slidize/what-is-slidize-and-why-do-you-need-it-2jcf</guid>
      <description>&lt;p&gt;Hello and welcome to our blog! We’re the &lt;a href="https://www.slidize.com/" rel="noopener noreferrer"&gt;slidize&lt;/a&gt; team, and we’d love to introduce you to our product — while also inviting your feedback.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is slidize?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;slidize&lt;/strong&gt; is a .NET library designed for working with presentations in popular formats such as &lt;strong&gt;PowerPoint&lt;/strong&gt; and &lt;strong&gt;OpenOffice&lt;/strong&gt;. Unlike relying on PowerPoint installations on every server machine, slidize enables seamless, on-premise manipulation of presentation files — especially useful for server and cloud environments.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Use slidize?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No Dependence on Microsoft PowerPoint&lt;/strong&gt;&lt;br&gt;
slidize operates independently, eliminating the need to install PowerPoint on each server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Server/Cloud-Ready&lt;/strong&gt;&lt;br&gt;
slidize focuses on high-demand operations for server and cloud environments, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Format Conversion&lt;/strong&gt; (pptx ↔ ppt ↔ odp ↔ pptm, etc.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Exporting Presentations&lt;/strong&gt; to PDF (with advanced accessibility settings), images (JPEG, PNG, TIFF, SVG, HTML), or HTML pages.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fast Presentation Merging&lt;/strong&gt; for any number of files into one.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Our roadmap includes &lt;strong&gt;fast text extraction&lt;/strong&gt; for large-scale presentation indexing, &lt;strong&gt;Python support&lt;/strong&gt;, and &lt;strong&gt;AI-powered features&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  High-Quality Output
&lt;/h2&gt;

&lt;p&gt;slidize delivers &lt;strong&gt;pixel-perfect conversions&lt;/strong&gt;, ensuring a PDF export or image rendering that mirrors the original slide exactly. Charts, 3D graphics, WordArt, and other complex slide elements are preserved accurately.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Extensive Conversion Settings&lt;/strong&gt; let you customize every export detail — handling accessibility, handouts, speaker notes, comments, and more.&lt;/p&gt;

&lt;h2&gt;
  
  
  Competitive Pricing
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Perpetual License at $99&lt;/strong&gt;: Many presentation libraries range from $600 to $5,000 or higher. slidize offers a high-quality alternative at a fraction of the cost.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Free Trial Available&lt;/strong&gt;: Test slidize before purchasing to ensure it meets your requirements.&lt;/p&gt;

&lt;h2&gt;
  
  
  We Value Your Feedback
&lt;/h2&gt;

&lt;p&gt;We’re in the product launch phase and would appreciate any thoughts or suggestions you may have. Is our approach viable for your use cases? Let us know, and thank you for your interest in &lt;strong&gt;slidize&lt;/strong&gt;!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
