Skip to content

Instantly share code, notes, and snippets.

View gueff's full-sized avatar

Guido K.B.W. Üffing gueff

View GitHub Profile
<?php
/**
* ✔ pos. tested with Parsedown 1.7.4
*
* This allows usage of image dimensions this way:
* ![odyssee2001](http://example.com/Odyssey2001.png =100x100)
* ![odyssee2001](http://example.com/Odyssey2001.png =100x100 "Even with Title")
*
* @related
<?php
/**
* @param string $sMarkup
* @return string
*/
function beautifyXml($sMarkup = '') : string
{
$oDOMDocument = new DOMDocument();
$oDOMDocument->preserveWhiteSpace = false;