From 4317cad91f697cb1d938baea35255443c6b4bd22 Mon Sep 17 00:00:00 2001 From: h3p Date: Wed, 18 Mar 2026 11:14:37 +0100 Subject: [PATCH] fix: repair github pages markdown rendering --- Neon Vision Editor.xcodeproj/project.pbxproj | 4 ++-- index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Neon Vision Editor.xcodeproj/project.pbxproj b/Neon Vision Editor.xcodeproj/project.pbxproj index 39339b2..882c7d4 100644 --- a/Neon Vision Editor.xcodeproj/project.pbxproj +++ b/Neon Vision Editor.xcodeproj/project.pbxproj @@ -361,7 +361,7 @@ CODE_SIGNING_ALLOWED = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 537; + CURRENT_PROJECT_VERSION = 538; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = CS727NF72U; ENABLE_APP_SANDBOX = YES; @@ -444,7 +444,7 @@ CODE_SIGNING_ALLOWED = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 537; + CURRENT_PROJECT_VERSION = 538; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = CS727NF72U; ENABLE_APP_SANDBOX = YES; diff --git a/index.html b/index.html index edcbe41..4961df5 100644 --- a/index.html +++ b/index.html @@ -286,8 +286,8 @@ } const renderer = new marked.Renderer(); - renderer.heading = ({ tokens, depth }) => { - const text = marked.parserInline(tokens); + renderer.heading = function ({ tokens, depth }) { + const text = this.parser.parseInline(tokens); const id = slugify(text); return `${text}`; };