Sha256: d4458175688233be5052b17202b5d02552cfe3d5bf819f4a41d54fdb80132b3e
Contents?: true
Size: 1.33 KB
Versions: 6
Compression:
Stored size: 1.33 KB
Contents
<!doctype html> <!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <html> <head> <meta charset="UTF-8"> <title>marked-element demo</title> <script src="../../webcomponentsjs/webcomponents-lite.js"></script> <link rel="import" href="../marked-element.html"> </head> <body> <section> <h3>Inline Text</h3> <marked-element> <script type="text/markdown"> ## Markdown Renderer Example: ```html <div> <core-overlay> <h2>Dialog</h2> <input placeholder="say something..." autofocus> <div>I agree with this wholeheartedly.</div> <button core-overlay-toggle>OK</button> </core-overlay> </div> ``` _Nifty_ features. </script> </marked-element> </section> <section> <h3>Text via Attribute</h3> <marked-element markdown=" <div>div</div>"></marked-element> </section> </body> </html>
Version data entries
6 entries across 6 versions & 2 rubygems