Rev 13229 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
13229 | obado | 1 | <!doctype html> |
2 | <html> |
||
3 | <head> |
||
13471 | obado | 4 | <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> |
13229 | obado | 5 | <style> |
6 | body{ |
||
7 | font-family:verdana,helvetica,arial,sans-serif; |
||
8 | } |
||
9 | table{ |
||
10 | border-collapse:collapse; |
||
11 | } |
||
12 | td,th{ |
||
13 | border:1px solid grey; |
||
14 | padding:4px; |
||
15 | } |
||
16 | th{ |
||
17 | background-color:#DFDFDF; |
||
18 | } |
||
13471 | obado | 19 | a, code{word-wrap: break-word;} |
13229 | obado | 20 | </style> |
21 | <title>Protocol for WIMS direct connection with other web servers</title> |
||
22 | </head> |
||
23 | <body> |
||
24 | <div id="content"></div> |
||
25 | <pre id="md_source"> |
||
26 | !read protocol.md |
||
27 | </pre> |
||
28 | <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> |
||
29 | <script> |
||
30 | var source = document.getElementById('md_source'); |
||
31 | document.getElementById('content').innerHTML = |
||
32 | marked(source.innerHTML, {tables: true}); |
||
33 | source.style.display="none"; |
||
34 | </script> |
||
35 | </body> |
||
36 | </html> |
||
37 |