signatures:no translation
A NoMod block ("no modification block" or "don't translate this block") is passed through the translator unchanged. Use it to directly include blocks of existing HTML.
| Xilize markup | browser rendering |
|
A simple javascript snippet: == <script type="text/javascript"> <!-- var d = new Date(); document.write("<p>The <em>Universal Coordinated Time</em> is "); document.write(d.getUTCHours()); document.write(":"); document.write(d.getUTCMinutes()); document.write(".</p>"); // --> </script> == |
A simple javascript snippet: |
XHTML generated
<p>A simple javascript snippet:</p>
<script type="text/javascript">
<!--
var d = new Date();
document.write("<p>The <em>Universal Coordinated Time</em> is ");
document.write(d.getUTCHours());
document.write(":");
document.write(d.getUTCMinutes());
document.write(".</p>");
// -->
</script>