mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix #1526
This commit is contained in:
parent
cc99d8153d
commit
d09e73537f
1 changed files with 2 additions and 2 deletions
|
@ -54,9 +54,9 @@ const handlers = {
|
|||
document.body.appendChild(blockquote);
|
||||
},
|
||||
|
||||
title({ document }, { title }) {
|
||||
title({ document }, { content }) {
|
||||
const h1 = document.createElement('h1');
|
||||
h1.textContent = title;
|
||||
h1.textContent = content;
|
||||
document.body.appendChild(h1);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue