styled.html 876 B

123456789101112131415161718192021222324
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <link rel="stylesheet" href="./main.css" />
  7. <script src="./main.js"></script>
  8. </head>
  9. <body style="background-color: #313B3E;">
  10. <div class="container markdown-body" id="contents"></div>
  11. </body>
  12. <script>
  13. const resizeOberver = new ResizeObserver((entities) => {
  14. const height = entities[0].contentRect.height
  15. document.title = "" + height
  16. })
  17. resizeOberver.observe(document.querySelector('#contents'))
  18. window.showMarkdownFile = function (file) {
  19. $.get(file, function( data ) {
  20. window.showMarkdown(encodeURIComponent(data));
  21. });
  22. }
  23. </script>
  24. </html>