index.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="zh-cmn-Hans">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
  7. <meta name="theme-color" content="#f1f7fe">
  8. <meta name="apple-mobile-web-app-capable" content="yes">
  9. <meta name="mobile-web-app-capable" content="yes"/>
  10. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  11. <title>Vditor - A markdown editor written in TypeScript.</title>
  12. <meta name="description"
  13. content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
  14. <meta property="og:description"
  15. content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
  16. <meta name="twitter:description" property="og:description" itemprop="description"
  17. content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
  18. <link rel="dns-prefetch" href="//static.hacpai.com"/>
  19. <link rel="dns-prefetch" href="//img.hacpai.com"/>
  20. <link rel="preconnect" href="https://static.hacpai.com">
  21. <link rel="icon" type="image/png" href="https://static.hacpai.com/images/favicon.png"/>
  22. <link rel="apple-touch-icon" href="https://static.hacpai.com/images/apple-touch-icon.png">
  23. <link rel="shortcut icon" type="image/x-icon" href="https://static.hacpai.com/images/favicon.png">
  24. <meta name="copyright" content="B3log"/>
  25. <meta http-equiv="Window-target" content="_top"/>
  26. <meta property="og:locale" content="zh-cmn-Hans"/>
  27. <meta property="og:title" content="Vditor - A markdown editor written in TypeScript."/>
  28. <meta property="og:site_name" content="黑客派"/>
  29. <meta property="og:url" content="https://github.com/b3log/vditor"/>
  30. <meta name="twitter:card" content="summary"/>
  31. <meta name="twitter:domain" content="hacpai.com"/>
  32. <meta name="twitter:title" property="og:title" itemprop="title name"
  33. content="Vditor - A markdown editor written in TypeScript."/>
  34. <meta name="twitter:site" content="@B3logOS"/>
  35. <meta name="twitter:url" content="https://github.com/b3log/vditor"/>
  36. <meta property="og:image" content="https://static.hacpai.com/images/faviconH.png"/>
  37. <meta name="twitter:image" content="https://static.hacpai.com/images/faviconH.png"/>
  38. <link href="dist/demo.css" rel="stylesheet">
  39. <!-- webpack 编译 -->
  40. <script src="dist/demo.js" defer></script>
  41. </head>
  42. <body>
  43. <h2>vditor for you</h2>
  44. <div id="vditor">
  45. <h1>Vditor</h1>
  46. <ul>
  47. <li>foo</li>
  48. <li>bar</li>
  49. </ul>
  50. </div>
  51. <h2>vditor for jest puppeteer</h2>
  52. <div id="vditorTest"></div>
  53. <!-- 静态文件引入文件 -->
  54. <!--<script src="../dist/index.min.js"></script>-->
  55. <!--<script src="demo.js"></script>-->
  56. </body>
  57. </html>