You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Facinorous 5bb229b08d
Update a lot of pages
1 year ago
..
Changelog.astro Update a lot of pages 1 year ago
InlineNav.astro first commit 1 year ago
README.astro Update a lot of pages 1 year ago

README.astro

---

import { marked } from "marked";

const README = await fetch("https://raw.githubusercontent.com/Facinorous-420/dick/master/README.md")
.then((res) => res.text())
.then((data) => {
return data
})
.catch((err) => console.log("fetch error", err))

---

<div set:html={marked(README)}></div>