mirror of
https://github.com/Astatin3/Polyboard.git
synced 2026-06-09 00:28:07 -06:00
Add docs
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
||||
|
||||
<main class="container">
|
||||
<div id="content"></div>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
|
||||
var req = new XMLHttpRequest();
|
||||
|
||||
req.open('GET', 'https://raw.githubusercontent.com/wiki/Astatin3/Modulator/Home.md', false);
|
||||
req.send(null);
|
||||
|
||||
if(req.status == 200) {
|
||||
document.getElementById('content').innerHTML = marked.parse(req.responseText)
|
||||
}
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user