Skip to content

Commit

Permalink
feat: gh pages from master
Browse files Browse the repository at this point in the history
fixes #124
  • Loading branch information
BelfordZ committed Mar 21, 2019
1 parent 14ee381 commit ff0d20f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<html>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.9.0/showdown.min.js"></script>
<script>
var converter = new showdown.Converter();
fetch('https://raw.githubusercontent.com/open-rpc/spec/master/README.md').then((res) => res.text()).then((text) => {
const html = converter.makeHtml(text);
document.body.innerHTML += html;
});
</script>
</body>
</html

0 comments on commit ff0d20f

Please sign in to comment.