Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3499792
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:39:17+00:00 2026-05-18T12:39:17+00:00

I am in the process of writing a PHP command line script to convert

  • 0

I am in the process of writing a PHP command line script to convert hundreds of HTML snippets into Markdown using the Markdownify library. However, I have come across a situation where some of my HTML is not structured well enough to be used with Markdownify. So I first need to send my HTML through some library that can clean it up and add optional closing tags, etc. I will be working with partial blocks of HTML, not complete HTML documents, so the HTML that is returned must be partial (and not include the doctype, etc).

Do you know of a PHP script that can convert HTML to XHTML?

Solution:

Utilize the PHP DOMDocument class. It will format your HTML even if it is broken. Then you can extract the cleaned up HTML:

libxml_use_internal_errors(true); //use this to prevent warning messages from displaying because of the bad HTML

$doc = new DOMDocument();
$doc->loadHTML($badHtml);
$goodHtml = $doc->saveHTML();

This will return a full HTML document (with the cleaned up version in the body tag), even though I passed it a partial block of HTML, so I can extract the cleaned up partial with this regex:

$goodHtmlPartial = trim(ereg_replace('(.*)<body>(.*)</body>(.*)', '\2', $goodHtml));
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:39:18+00:00Added an answer on May 18, 2026 at 12:39 pm

    You could load the HTML into DOM then save it as XML.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to process files inside the folder sub directories using php script. Actually I
I'm in the process of writing a Java 2D game. I'm using the built-in
I'm writing a PHP process that will run on a Unix machine that will
I'm in the process of writing a DI framework for PHP 5, and I've
I have a scenario where one PHP process is writing a file about 3
I'm in the process of writing some epub creation functionality using php5. Currently I
I've been coding a website for the past 6 months using HTML/CSS/PHP/MySQL/Javascript. I'm coding
I am writing a very process-intensive function in PHP that needs to be as
I'm in the process of writing a library that deals with long-running tasks like
I am in the process of writing a Bluetooth scanner that locates and identifies

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.