Mercurial
annotate mrjunejune/src/blog/websocket-demystified/index.html @ 149:f41ac17926d2
[Config] Added ctags scripts and actual tags.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Sat, 10 Jan 2026 07:07:10 -0800 |
| parents | c1eab8c0b0f9 |
| children | 295ac2e5ec00 |
| rev | line source |
|---|---|
| 123 | 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.0"> | |
| 6 <title>Websocket Demystified</title> | |
| 7 {{/parts/base_head.html}} | |
| 8 <link rel="stylesheet" href="/tools/markdown_to_html/index.css" /> | |
|
145
c1eab8c0b0f9
[MrJuneJune] Small improvement UX and tests passes now.
June Park <parkjune1995@gmail.com>
parents:
123
diff
changeset
|
9 <link rel="preload" href="/public/web-socket-header.webp" as="image" type="image/webp"> |
| 123 | 10 </head> |
| 11 <body> | |
| 12 {{/parts/header.html}} | |
| 13 <main> | |
| 14 <div id="content"></div> | |
| 15 </main> | |
| 16 {{/parts/footer.html}} | |
| 17 <script src="/markdown_to_html.js"></script> | |
| 18 <script> | |
| 19 fetch('/blog/websocket-demystified/index.md').then(res => res.text()).then(text => renderMarkdown(content, text)); | |
| 20 </script> | |
| 21 </body> |