25 lines
364 B
HTML
25 lines
364 B
HTML
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="/marked.js"></script>
|
||
|
<script src="http://kimird.com/bricks/bricks.js"></script>
|
||
|
<script>
|
||
|
const opts =
|
||
|
{
|
||
|
"widget": {
|
||
|
"widgettype":"MarkdownViewer",
|
||
|
"options":{
|
||
|
"navigator":true,
|
||
|
"md_url":"../docs/index.md"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
;
|
||
|
const app = new BricksApp(opts);
|
||
|
app.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|