diff --git a/src/misc/Changelog.js b/src/misc/Changelog.js
index b3b3b8d..4db7914 100644
--- a/src/misc/Changelog.js
+++ b/src/misc/Changelog.js
@@ -65,8 +65,8 @@ export default function Changelog(props) {
let copy = true;
for (let i = 0; i < lines.length; i++) {
- if (lines[i].startsWith('### ')) {
- let version = lines[i].replace('### ', '');
+ if (lines[i].startsWith('## ')) {
+ let version = lines[i].replace('## ', '');
if (SemverValid(version) === null) {
if (copy === true) {
@@ -104,12 +104,32 @@ export default function Changelog(props) {
}
const renderers = {
- h1: (props) =>
{props.children}
,
- h2: (props) => {props.children}
,
- h3: (props) => {props.children}
,
- h4: (props) => {props.children}
,
- a: (props) => {props.children},
- }
+ h1: (props) => (
+
+ {props.children}
+
+ ),
+ h2: (props) => (
+
+ {props.children}
+
+ ),
+ h3: (props) => (
+
+ {props.children}
+
+ ),
+ h4: (props) => (
+
+ {props.children}
+
+ ),
+ a: (props) => (
+
+ {props.children}
+
+ ),
+ };
return (