mirror of
https://github.com/wekan/wekan.git
synced 2026-02-28 02:44:07 +01:00
Include to Wekan packages directory contents, so that meteor command would build all directly.
This also simplifies build scripts. Thanks to xet7 !
This commit is contained in:
parent
6117097a93
commit
73e265d8fd
354 changed files with 36977 additions and 106 deletions
78
packages/markdown/marked/docs/demo/index.html
Normal file
78
packages/markdown/marked/docs/demo/index.html
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Marked Demo</title>
|
||||
<link rel="stylesheet" href="./demo.css" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="https://github.com/markedjs/marked">
|
||||
<img class="github-ribbon" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
|
||||
</a>
|
||||
|
||||
<header>
|
||||
<a href="../">
|
||||
<img src="../img/logo-black.svg" height="64px" width="64px" />
|
||||
</a>
|
||||
<h1>Marked Demo</h1>
|
||||
</header>
|
||||
|
||||
<div id="loading">Loading...</div>
|
||||
<div id="main">
|
||||
<div class="containers">
|
||||
<div class="container">
|
||||
<div class="label">
|
||||
<span>Input</span> ·
|
||||
<a id="permalink">Permalink</a> ·
|
||||
<span>Version: </span>
|
||||
<select id="markedVersion">
|
||||
<option value="pr">Add PR:</option>
|
||||
<option value="commit">Add Commit:</option>
|
||||
<option value="master" selected>master</option>
|
||||
</select>
|
||||
<input type="text" id="commitVersion" title="Press ENTER to add commit" />·
|
||||
<button id="clear">Clear</button>
|
||||
<select id="inputType">
|
||||
<option value="markdown">Markdown</option>
|
||||
<option value="options">Options</option>
|
||||
</select>
|
||||
</div>
|
||||
<textarea id="markdown" class="inputPane"></textarea>
|
||||
<textarea id="options" class="inputPane" placeholder="Options (as JSON)"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="label">
|
||||
<select id="outputType">
|
||||
<option value="preview">Preview</option>
|
||||
<option value="html">HTML Source</option>
|
||||
<option value="lexer">Lexer Data</option>
|
||||
<option value="quickref">Quick Reference</option>
|
||||
</select> ·
|
||||
Response Time:
|
||||
<span id="responseTime"></span>
|
||||
</div>
|
||||
|
||||
<div id="preview" class="pane">
|
||||
<noscript>
|
||||
<h2>You'll need to enable Javascript to use this tool.</h2>
|
||||
</noscript>
|
||||
<iframe src="./preview.html" frameborder="0" sandbox="allow-same-origin allow-top-navigation-by-user-activation"></iframe>
|
||||
</div>
|
||||
|
||||
<textarea id="html" class="pane" readonly="readonly"></textarea>
|
||||
|
||||
<textarea id="lexer" class="pane" readonly="readonly"></textarea>
|
||||
|
||||
<textarea id="quickref" class="pane" readonly="readonly"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script id="markedCdn"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/es6-promise/dist/es6-promise.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/unfetch/dist/unfetch.umd.js"></script>
|
||||
<script src="./demo.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue