oe-ui-misc
Version:
collection of miscellaneous oe-ui Polymer components
40 lines (35 loc) • 1.24 kB
HTML
<!--
©2018-2019 EdgeVerve Systems Limited (a fully owned Infosys subsidiary),
Bangalore, India. All Rights Reserved.
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<title>oe-markdown-link demo</title>
<script type="module">
import '@polymer/iron-demo-helpers/demo-pages-shared-styles.js';
import '@polymer/iron-demo-helpers/demo-snippet.js';
import '@polymer/paper-styles/paper-styles.js';
import '@polymer/polymer/lib/elements/custom-style';
import '../oe-markdown-link.js';
</script>
<custom-style>
<style is="custom-style" include="demo-pages-shared-styles">
</style>
</custom-style>
</head>
<body unresolved>
<div class="vertical-section-container centered">
<h3>markdown-link</h3>
<demo-snippet>
<template>
<oe-markdown-link markdown-url="../../Readme.md"></oe-markdown-link>
</template>
</demo-snippet>
</div>
</body>
</html>