-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdownRenderer.js
59 lines (50 loc) · 1.29 KB
/
MarkdownRenderer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { ShadowComponent } from "./ShadowComponent.js";
import { marked } from "https://cdn.jsdelivr.net/npm/marked/lib/marked.esm.js";
export class MarkdownRenderer extends ShadowComponent {
constructor() {
super();
}
render() {
return /*HTML*/ `
<style>
/* Dark mode styles */
:host {
display: block;
background-color: black;
color: #d4d4d4;
line-height: 1.6;
max-width: 75ch;
margin: 0 auto;
text-align: justify;
padding-bottom: 2rem;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
display: none;
}
</style>
<div class="markdown-body">
<!-- Markdown content will be inserted here -->
</div>
`;
}
connectedCallback() {
const src = this.getAttribute("src");
fetch(src)
.then((response) => response.text())
.then((text) => {
const html = marked(text);
this.shadow.querySelector(".markdown-body").innerHTML = html;
})
.catch((error) => {
console.error("Error fetching Markdown file:", error);
});
}
}
customElements.define("markdown-renderer", MarkdownRenderer);