<?xml version="1.0"?><oembed><version>1.0</version><provider_name>Meler</provider_name><provider_url>https://www.meler.cn/it/</provider_url><author_name>ion.herrera</author_name><author_url>https://www.meler.cn/it/author/ion-herrera/</author_url><title>Elenco dei documenti - Meler</title><type>rich</type><width>600</width><height>338</height><html>&lt;blockquote class="wp-embedded-content" data-secret="up48Go5Bf3"&gt;&lt;a href="https://www.meler.cn/it/servizi/meler-support/documentazione/"&gt;Documentazione&lt;/a&gt;&lt;/blockquote&gt;&lt;iframe sandbox="allow-scripts" security="restricted" src="https://www.meler.cn/it/servizi/meler-support/documentazione/embed/#?secret=up48Go5Bf3" width="600" height="338" title="&#x201C;Documentazione&#x201D; &#x2014; Meler" data-secret="up48Go5Bf3" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"&gt;&lt;/iframe&gt;&lt;script type="text/javascript"&gt;/**&#xD; * WordPress inline HTML embed&#xD; *&#xD; * @since 4.4.0&#xD; * @output wp-includes/js/wp-embed.js&#xD; *&#xD; * This file cannot have ampersands in it. This is to ensure&#xD; * it can be embedded in older versions of WordPress.&#xD; * See https://core.trac.wordpress.org/changeset/35708.&#xD; */&#xD;(function ( window, document ) {&#xD;	'use strict';&#xD;&#xD;	var supportedBrowser = false,&#xD;		loaded = false;&#xD;&#xD;		if ( document.querySelector ) {&#xD;			if ( window.addEventListener ) {&#xD;				supportedBrowser = true;&#xD;			}&#xD;		}&#xD;&#xD;	/** @namespace wp */&#xD;	window.wp = window.wp || {};&#xD;&#xD;	if ( !! window.wp.receiveEmbedMessage ) {&#xD;		return;&#xD;	}&#xD;&#xD;	/**&#xD;	 * Receive embed message.&#xD;	 *&#xD;	 * @param {MessageEvent} e&#xD;	 */&#xD;	window.wp.receiveEmbedMessage = function( e ) {&#xD;		var data = e.data;&#xD;&#xD;		if ( ! data ) {&#xD;			return;&#xD;		}&#xD;&#xD;		if ( ! ( data.secret || data.message || data.value ) ) {&#xD;			return;&#xD;		}&#xD;&#xD;		if ( /[^a-zA-Z0-9]/.test( data.secret ) ) {&#xD;			return;&#xD;		}&#xD;&#xD;		var iframes = document.querySelectorAll( 'iframe[data-secret="' + data.secret + '"]' ),&#xD;			blockquotes = document.querySelectorAll( 'blockquote[data-secret="' + data.secret + '"]' ),&#xD;			i, source, height, sourceURL, targetURL;&#xD;&#xD;		for ( i = 0; i &lt; blockquotes.length; i++ ) {&#xD;			blockquotes[ i ].style.display = 'none';&#xD;		}&#xD;&#xD;		for ( i = 0; i &lt; iframes.length; i++ ) {&#xD;			source = iframes[ i ];&#xD;&#xD;			if ( e.source !== source.contentWindow ) {&#xD;				continue;&#xD;			}&#xD;&#xD;			source.removeAttribute( 'style' );&#xD;&#xD;			/* Resize the iframe on request. */&#xD;			if ( 'height' === data.message ) {&#xD;				height = parseInt( data.value, 10 );&#xD;				if ( height &gt; 1000 ) {&#xD;					height = 1000;&#xD;				} else if ( ~~height &lt; 200 ) {&#xD;					height = 200;&#xD;				}&#xD;&#xD;				source.height = height;&#xD;			}&#xD;&#xD;			/* Link to a specific URL on request. */&#xD;			if ( 'link' === data.message ) {&#xD;				sourceURL = document.createElement( 'a' );&#xD;				targetURL = document.createElement( 'a' );&#xD;&#xD;				sourceURL.href = source.getAttribute( 'src' );&#xD;				targetURL.href = data.value;&#xD;&#xD;				/* Only continue if link hostname matches iframe's hostname. */&#xD;				if ( targetURL.host === sourceURL.host ) {&#xD;					if ( document.activeElement === source ) {&#xD;						window.top.location.href = data.value;&#xD;					}&#xD;				}&#xD;			}&#xD;		}&#xD;	};&#xD;&#xD;	function onLoad() {&#xD;		if ( loaded ) {&#xD;			return;&#xD;		}&#xD;&#xD;		loaded = true;&#xD;&#xD;		var isIE10 = -1 !== navigator.appVersion.indexOf( 'MSIE 10' ),&#xD;			isIE11 = !!navigator.userAgent.match( /Trident.*rv:11\./ ),&#xD;			iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),&#xD;			iframeClone, i, source, secret;&#xD;&#xD;		for ( i = 0; i &lt; iframes.length; i++ ) {&#xD;			/** @var {IframeElement} */&#xD;			source = iframes[ i ];&#xD;&#xD;			secret = source.getAttribute( 'data-secret' );&#xD;			if ( ! secret ) {&#xD;				/* Add secret to iframe */&#xD;				secret = Math.random().toString( 36 ).substr( 2, 10 );&#xD;				source.src += '#?secret=' + secret;&#xD;				source.setAttribute( 'data-secret', secret );&#xD;			}&#xD;&#xD;			/* Remove security attribute from iframes in IE10 and IE11. */&#xD;			if ( ( isIE10 || isIE11 ) ) {&#xD;				iframeClone = source.cloneNode( true );&#xD;				iframeClone.removeAttribute( 'security' );&#xD;				source.parentNode.replaceChild( iframeClone, source );&#xD;			}&#xD;&#xD;			/*&#xD;			 * Let post embed window know that the parent is ready for receiving the height message, in case the iframe&#xD;			 * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the&#xD;			 * window will then (re-)send the height message right away.&#xD;			 */&#xD;			source.contentWindow.postMessage( {&#xD;				message: 'ready',&#xD;				secret: secret&#xD;			}, '*' );&#xD;		}&#xD;	}&#xD;&#xD;	if ( supportedBrowser ) {&#xD;		window.addEventListener( 'message', window.wp.receiveEmbedMessage, false );&#xD;		document.addEventListener( 'DOMContentLoaded', onLoad, false );&#xD;		window.addEventListener( 'load', onLoad, false );&#xD;	}&#xD;})( window, document );&lt;/script&gt;</html><thumbnail_url>https://www.meler.cn/media/header-servicios-documentacion-listado.png</thumbnail_url><thumbnail_width>1920</thumbnail_width><thumbnail_height>780</thumbnail_height><description>Trovate tutta la documentazione tecnica dei nostri prodotti.</description></oembed>