home.social

#document-conversion — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #document-conversion, aggregated by home.social.

fetched live
  1. The Register: LibreOffice learns to speak Markdown in version 26.2. “LibreOffice Writer can open documents in almost any word processor file format, and save back into almost any other. As of late last month, this includes Markdown. Specifically, LibreOffice 26.2 supports the version called CommonMark.”

    https://rbfirehose.com/2026/03/14/299553/
  2. The Register: LibreOffice learns to speak Markdown in version 26.2. “LibreOffice Writer can open documents in almost any word processor file format, and save back into almost any other. As of late last month, this includes Markdown. Specifically, LibreOffice 26.2 supports the version called CommonMark.”

    https://rbfirehose.com/2026/03/14/299553/
  3. • 🔒 Secure File Handling – Safe document processing with proper cleanup
    • ⚙️ Configurable Settings – Customize paths, storage disks, and conversion options
    #opensource #PHP #fileconversion #documentconversion
    github.com/Blaspsoft/doxswap

  4. • 🔒 Secure File Handling – Safe document processing with proper cleanup
    • ⚙️ Configurable Settings – Customize paths, storage disks, and conversion options
    #opensource #PHP #fileconversion #documentconversion
    github.com/Blaspsoft/doxswap

  5. 🚀✨ Presenting: Another open-source gem that’ll finally make your #PDFs readable, assuming you can figure out how to enable #JavaScript and have the patience of a saint 🧘‍♂️. Because, really, who doesn’t love converting documents one error at a time? 😂🔍
    olmocr.allenai.org/ #openSource #documentConversion #techHumor #developerLife #HackerNews #ngated

  6. 🚀✨ Presenting: Another open-source gem that’ll finally make your #PDFs readable, assuming you can figure out how to enable #JavaScript and have the patience of a saint 🧘‍♂️. Because, really, who doesn’t love converting documents one error at a time? 😂🔍
    olmocr.allenai.org/ #openSource #documentConversion #techHumor #developerLife #HackerNews #ngated

  7. Microsoft expands Markdown ecosystem with new document conversion tool: Tech giants Microsoft and Google enhance Markdown integration in their office suites, signaling wider adoption of plain text formats. ppc.land/microsoft-expands-mar #Microsoft #Markdown #Google #DocumentConversion #TechNews

  8. Pandoc is a versatile command-line tool that facilitates seamless file conversions between different markup formats. It supports an extensive range of input and output formats, making it indispensable for writers, researchers, and developers. I have found it particularly useful when converting output from LLMs to to HTML or more common word processing formats.

    Pandoc’s strength lies in its support for various input formats, including Markdown, HTML, LaTeX, Open Document, and Microsoft Word. It can convert those documents to PDF, HTML, EPUB, and even PowerPoint presentations. This flexibility makes Pandoc an invaluable tool for individuals working with documents across different platforms and tools.

    Here are some specific examples that may fit your use case.

    1. Converting Markdown to HTML:

    Markdown, known for its simplicity and readability, is widely used for creating content for the web. With Pandoc, you can effortlessly convert Markdown files to HTML, enabling seamless web content publishing. For instance, the following command can be used to convert a Markdown file named “example. md” to HTML:

    $ pandoc example.md -o example.html

    2. Generating PDF from LaTeX:

    LaTeX, renowned for its powerful typesetting capabilities, is favored for academic and technical documents. Pandoc seamlessly converts LaTeX files to PDF, producing high-quality documents suitable for printing or digital distribution. Consider the following command to convert a LaTeX file named “paper.tex” to PDF:

    $ pandoc paper.tex -o paper.pdf

    3. Transforming Word documents to Markdown:

    Many writers and researchers prefer working with Markdown due to its simplicity and portability. With Pandoc, you can convert Microsoft Word documents to Markdown, allowing editing and collaboration using lightweight, text-based tools. Use the following command to convert a Word document named “report.docx” to Markdown:

    $ pandoc report.docx -o report.md

    4. Creating EPUB from HTML:

    EPUB, a popular e-book format compatible with a wide range of e-readers and mobile devices, is a common choice for digital content distribution. If you have content in HTML format, Pandoc can assist in converting it to EPUB for convenient distribution and reading. Here’s an example command to convert an HTML file named “book.html” to EPUB:

    $ pandoc book.html -o book.epub

    5. Convert Markdown file to a PowerPoint presentation using Pandoc, you can use the command

    $ pandoc myslides.md -o myslides.pptx

    You can open the resulting .pptx file in PowerPoint

    In addition to these examples, Pandoc offers extensive customization options for fine-tuning the output of document conversions. Users can specify styling, metadata, and other parameters to ensure the converted files meet their specific requirements.

    In conclusion, Pandoc stands as a robust and versatile tool for document conversion, offering support for a wide array of input and output formats. Pandoc can help streamline your workflow and enhance your document management capabilities, whether you’re a writer, researcher, or developer.

    https://donwatkins.info/2024/10/02/pandoc-the-ultimate-document-conversion-tool/

    #documentConversion #Markdown #OpenSource #pandoc