| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html lang="zh-cmn-Hans">
- <head>
- <meta charset="utf-8"/>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
- <meta name="theme-color" content="#f1f7fe">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="mobile-web-app-capable" content="yes"/>
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <title>Vditor - A markdown editor written in TypeScript.</title>
- <meta name="description"
- content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
- <meta property="og:description"
- content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
- <meta name="twitter:description" property="og:description" itemprop="description"
- content="B3log 开源社区 markdown 编辑器,使用 TypeScript 编写。支持在线预览、表情插入、at 用户提示、HTML 转换等必要功能。"/>
- <link rel="dns-prefetch" href="//static.hacpai.com"/>
- <link rel="dns-prefetch" href="//img.hacpai.com"/>
- <link rel="preconnect" href="https://static.hacpai.com">
- <link rel="icon" type="image/png" href="https://static.hacpai.com/images/favicon.png"/>
- <link rel="apple-touch-icon" href="https://static.hacpai.com/images/apple-touch-icon.png">
- <link rel="shortcut icon" type="image/x-icon" href="https://static.hacpai.com/images/favicon.png">
- <meta name="copyright" content="B3log"/>
- <meta http-equiv="Window-target" content="_top"/>
- <meta property="og:locale" content="zh-cmn-Hans"/>
- <meta property="og:title" content="Vditor - A markdown editor written in TypeScript."/>
- <meta property="og:site_name" content="黑客派"/>
- <meta property="og:url" content="https://github.com/b3log/vditor"/>
- <meta name="twitter:card" content="summary"/>
- <meta name="twitter:domain" content="hacpai.com"/>
- <meta name="twitter:title" property="og:title" itemprop="title name"
- content="Vditor - A markdown editor written in TypeScript."/>
- <meta name="twitter:site" content="@B3logOS"/>
- <meta name="twitter:url" content="https://github.com/b3log/vditor"/>
- <meta property="og:image" content="https://static.hacpai.com/images/faviconH.png"/>
- <meta name="twitter:image" content="https://static.hacpai.com/images/faviconH.png"/>
- <link href="dist/demo.css" rel="stylesheet">
- <!-- webpack 编译 -->
- <script src="dist/demo.js" defer></script>
- </head>
- <body>
- <h2>vditor for you</h2>
- <div id="vditor">
- <h1>Vditor</h1>
- <ul>
- <li>foo</li>
- <li>bar</li>
- </ul>
- </div>
- <h2>vditor for jest puppeteer</h2>
- <div id="vditorTest"></div>
- <!-- 静态文件引入文件 -->
- <!--<script src="../dist/index.min.js"></script>-->
- <!--<script src="demo.js"></script>-->
- </body>
- </html>
|