|
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width,initial-scale=1" /> |
| 6 | + <title>ASM-Lang SPECIFICATION</title> |
| 7 | + <style> |
| 8 | + body{background:#222;color:#99ddff;font-family:Open Sans, sans-serif;margin:0;padding:1rem} |
| 9 | + .container{max-width:1000px;margin:0 auto;text-align:justify;text-justify:inter-word} |
| 10 | + pre, code{background:#3c3c3c;color:inherit;font-family:Source Code Pro, monospace;padding:.25rem .5rem} |
| 11 | + img{max-width:100%} |
| 12 | + </style> |
| 13 | +</head> |
| 14 | +<body> |
| 15 | + <div class="container" id="content">Rendering specification…</div> |
| 16 | + |
| 17 | + <!-- Markdown source is embedded below. marked.js will render it into #content. --> |
| 18 | + <script id="md" type="text/markdown"> |
| 19 | +This is free and unencumbered software released into the public domain. |
| 20 | + |
| 21 | +Anyone is free to copy, modify, publish, use, compile, sell, or |
| 22 | +distribute this software, either in source code form or as a compiled |
| 23 | +binary, for any purpose, commercial or non-commercial, and by any |
| 24 | +means. |
| 25 | + |
| 26 | +In jurisdictions that recognize copyright laws, the author or authors |
| 27 | +of this software dedicate any and all copyright interest in the |
| 28 | +software to the public domain. We make this dedication for the benefit |
| 29 | +of the public at large and to the detriment of our heirs and |
| 30 | +successors. We intend this dedication to be an overt act of |
| 31 | +relinquishment in perpetuity of all present and future rights to this |
| 32 | +software under copyright law. |
| 33 | + |
| 34 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 35 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 36 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 37 | +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 38 | +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 39 | +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 40 | +OTHER DEALINGS IN THE SOFTWARE. |
| 41 | + |
| 42 | +For more information, please refer to https://unlicense.org |
| 43 | + |
| 44 | + </script> |
| 45 | + |
| 46 | + <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> |
| 47 | + <script> |
| 48 | + document.addEventListener('DOMContentLoaded', function(){ |
| 49 | + const md = document.getElementById('md').textContent; |
| 50 | + const rendered = marked.parse(md); |
| 51 | + document.getElementById('content').innerHTML = rendered; |
| 52 | + }); |
| 53 | + </script> |
| 54 | +</body> |
| 55 | +</html> |
0 commit comments