summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html')
-rw-r--r--chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html b/chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html
new file mode 100644
index 00000000000..cc2b378d651
--- /dev/null
+++ b/chromium/third_party/catapult/third_party/polymer2/bower_components/marked/docs/demo/index.html
@@ -0,0 +1,60 @@
+<!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 class="containers">
+ <div class="container">
+ <div class="label">
+ <span>Input</span> ·
+ <a id="permalink">Permalink</a> ·
+ <button id="clear">Clear</button>
+ </div>
+ <textarea id="input"></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>
+ </div>
+
+ <div id="preview" class="pane">
+ <noscript>
+ <h2>You'll need to enable Javascript to use this tool.</h2>
+ </noscript>
+ </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>
+ <script src="https://cdn.jsdelivr.net/npm/marked/lib/marked.js"></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>