2020-06-22 22:14:52 +02:00
|
|
|
<?lua
|
|
|
|
local tocdata = __main__:get("toc")
|
2020-06-24 19:19:20 +02:00
|
|
|
local elinks = __main__:get("elinks")
|
2020-09-13 17:14:14 +02:00
|
|
|
local has_3d = __main__:get("has_3d")
|
2020-09-22 17:58:37 +02:00
|
|
|
local url = __main__:get("url")
|
2020-06-22 22:14:52 +02:00
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-06-24 19:00:41 +02:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/rst/hljs/github.css" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/rst/katex/katex.min.css" />
|
2020-09-22 17:58:37 +02:00
|
|
|
<script src="<?=HTTP_ROOT?>/rst/gscripts/jquery-3.2.1.min.js"> </script>
|
2020-09-13 17:14:14 +02:00
|
|
|
<?lua
|
|
|
|
if has_3d then
|
|
|
|
?>
|
|
|
|
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
|
|
|
|
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
|
|
|
|
<?lua
|
|
|
|
end
|
|
|
|
?>
|
2020-06-24 19:00:41 +02:00
|
|
|
<script
|
|
|
|
src="<?=HTTP_ROOT?>/rst/hljs/highlight.pack.js"
|
|
|
|
></script>
|
|
|
|
<script
|
|
|
|
src="<?=HTTP_ROOT?>/rst/hljs/highlightjs-line-numbers.min.js"
|
|
|
|
></script>
|
2020-09-22 17:58:37 +02:00
|
|
|
|
|
|
|
<?lua
|
|
|
|
if url then
|
|
|
|
?>
|
|
|
|
<link rel="stylesheet" type="text/css" href="https://chat.iohub.dev/assets/quicktalk.css" />
|
|
|
|
<script src="https://chat.iohub.dev/assets/quicktalk.js"> </script>
|
|
|
|
<?lua
|
|
|
|
else
|
|
|
|
?>
|
2020-09-01 18:02:49 +02:00
|
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
2020-09-22 17:58:37 +02:00
|
|
|
<?lua
|
|
|
|
end
|
|
|
|
?>
|
2020-06-24 19:00:41 +02:00
|
|
|
<script
|
|
|
|
src="<?=HTTP_ROOT?>/rst/katex/katex.min.js"
|
|
|
|
></script>
|
|
|
|
<script
|
|
|
|
src="<?=HTTP_ROOT?>/rst/katex/auto-render.min.js"
|
|
|
|
></script>
|
2020-06-22 22:14:52 +02:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/assets/style.css" />
|
2020-12-09 11:22:51 +01:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/assets/github-markdown.css" />
|
2020-06-22 22:14:52 +02:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/rst/font-awesome.css" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?=HTTP_ROOT?>/rst/ubuntu-regular.css" />
|
|
|
|
<title>
|
|
|
|
<?lua
|
|
|
|
if tocdata then
|
|
|
|
echo(tocdata.data.name)
|
|
|
|
else
|
2020-12-22 13:57:23 +01:00
|
|
|
echo("Documentation Hub")
|
2020-06-22 22:14:52 +02:00
|
|
|
end
|
|
|
|
?>
|
|
|
|
</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id = "top">
|
|
|
|
<div id = "navbar">
|
|
|
|
<div class = "doc-name">
|
|
|
|
<?lua if tocdata then ?>
|
|
|
|
<a href ="<?=HTTP_ROOT..'/'..tocdata.controller..'/'?>">
|
|
|
|
<?=tocdata.data.name?>
|
|
|
|
</a>
|
|
|
|
<?lua end ?>
|
|
|
|
</div>
|
2020-06-24 19:19:20 +02:00
|
|
|
<?lua
|
|
|
|
if elinks then
|
|
|
|
for k,v in ipairs(elinks) do
|
|
|
|
?>
|
2020-06-26 16:45:53 +02:00
|
|
|
<a class = "x-link" target="_blank" href ="<?=v.url?>">
|
2020-06-24 19:19:20 +02:00
|
|
|
<?=v.name?>
|
|
|
|
</a>
|
|
|
|
<?lua
|
|
|
|
end
|
2020-12-22 13:57:23 +01:00
|
|
|
end
|
|
|
|
if tocdata then
|
2020-06-24 19:19:20 +02:00
|
|
|
?>
|
2020-06-24 19:00:41 +02:00
|
|
|
<form id = "search_form" action="<?=HTTP_ROOT..'/'..tocdata.controller..'/search/'?>" method="get" class="search-form">
|
|
|
|
<input id = "search_box" name="q" type = "text" class = "search-box"></input>
|
|
|
|
</form>
|
2020-06-22 22:14:52 +02:00
|
|
|
<div class= "search-icon"></div>
|
2020-12-22 13:57:23 +01:00
|
|
|
<?lua
|
|
|
|
end
|
|
|
|
?>
|
2020-06-22 22:14:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id = "cover">
|
|
|
|
<div id = "book">
|
2020-12-22 13:57:23 +01:00
|
|
|
<?lua
|
|
|
|
if tocdata then
|
|
|
|
?>
|
|
|
|
<div class = "doc-toc">
|
|
|
|
<?lua
|
|
|
|
if toc then
|
|
|
|
toc:set("data", tocdata)
|
|
|
|
toc:render()
|
|
|
|
end
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="doc-content markdown-body">
|
|
|
|
<?lua
|
|
|
|
if __main__ then
|
|
|
|
__main__:render()
|
|
|
|
end
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?lua
|
|
|
|
else
|
|
|
|
?>
|
|
|
|
<div class="markdown-body">
|
|
|
|
<?lua
|
|
|
|
if __main__ then
|
|
|
|
__main__:render()
|
|
|
|
end
|
|
|
|
?>
|
2020-06-22 22:14:52 +02:00
|
|
|
</div>
|
2020-12-22 13:57:23 +01:00
|
|
|
<?lua end ?>
|
2020-06-22 22:14:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "bottom">
|
|
|
|
Powered by antd server, (c) 2019 - <?=os.date("*t").year?> Xuan Sang LE
|
|
|
|
</div>
|
|
|
|
<script>
|
2020-06-24 19:00:41 +02:00
|
|
|
window.addEventListener('load', (event) => {
|
2020-06-22 22:14:52 +02:00
|
|
|
// tree view events
|
|
|
|
var toggler = document.getElementsByClassName("caret");
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < toggler.length; i++) {
|
|
|
|
toggler[i].addEventListener("click", function() {
|
|
|
|
this.parentElement.querySelector(".nested").classList.toggle("active");
|
|
|
|
this.classList.toggle("caret-down");
|
|
|
|
});
|
|
|
|
}
|
2020-06-24 19:00:41 +02:00
|
|
|
var input = document.getElementById("search_box");
|
|
|
|
var form = document.getElementById("search_form");
|
2020-12-22 13:57:23 +01:00
|
|
|
if(form)
|
2020-06-24 19:00:41 +02:00
|
|
|
{
|
2020-12-22 13:57:23 +01:00
|
|
|
form.onsubmit = function()
|
|
|
|
{
|
|
|
|
var val = input.value.trim();
|
|
|
|
console.log(val);
|
|
|
|
if( val === "" || val == "\n") return false;
|
|
|
|
return true;
|
|
|
|
}
|
2020-06-24 19:00:41 +02:00
|
|
|
}
|
2020-09-22 17:58:37 +02:00
|
|
|
<?lua
|
|
|
|
if url then
|
|
|
|
?>
|
|
|
|
var options = {
|
|
|
|
target: "quick_talk_comment_thread",
|
|
|
|
api_uri: "https://chat.iohub.dev/comment",
|
|
|
|
uri: "<?=url?>",
|
2020-12-09 12:13:03 +01:00
|
|
|
page: 'cover',
|
2020-09-22 19:50:59 +02:00
|
|
|
author: {
|
|
|
|
first: "mrsang",
|
|
|
|
last: "iohub.dev"
|
|
|
|
},
|
2020-09-22 17:58:37 +02:00
|
|
|
onload: function(){
|
|
|
|
renderMathInElement($("#book")[0]);
|
|
|
|
$('pre code').each(function(i, block) {
|
|
|
|
hljs.highlightBlock(block);
|
|
|
|
hljs.lineNumbersBlock(block);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
new QuickTalk(options);
|
|
|
|
<?lua
|
|
|
|
end
|
|
|
|
?>
|
2020-06-24 19:00:41 +02:00
|
|
|
});
|
2020-09-22 17:58:37 +02:00
|
|
|
|
2020-06-22 22:14:52 +02:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|