From 831835547544d199e4497a53cf58e8ef09e645c8 Mon Sep 17 00:00:00 2001 From: zhangyuheng Date: Mon, 2 Mar 2026 17:30:59 +0800 Subject: [PATCH] Implement structure for code changes with placeholders for future updates --- css/pages/join.css | 888 +++++++++++++++++++++++++++++++++++++++++++++ data/convention.md | 96 +++++ join.html | 246 +++++++++++++ js/components.js | 3 +- js/join_script.js | 464 +++++++++++++++++++++++ js/marked.min.js | 69 ++++ 6 files changed, 1765 insertions(+), 1 deletion(-) create mode 100644 css/pages/join.css create mode 100644 data/convention.md create mode 100644 join.html create mode 100644 js/join_script.js create mode 100644 js/marked.min.js diff --git a/css/pages/join.css b/css/pages/join.css new file mode 100644 index 0000000..31fd574 --- /dev/null +++ b/css/pages/join.css @@ -0,0 +1,888 @@ +:root { + --step-active-bg: #0071e3; + --sidebar-bg: #f5f5f7; + --sidebar-width: 280px; + --content-padding: 60px; + --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); + --transition-smooth: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); +} + +body { + background-color: #fbfbfd; + color: #1d1d1f; +} + +/* Minimal Header */ +.join-header-minimal { + padding: 120px 20px 40px; + text-align: center; + background: transparent; +} + +.join-header-minimal h1 { + font-size: 3rem; + font-weight: 700; + letter-spacing: -0.02em; + margin-bottom: 10px; + background: linear-gradient(135deg, #1d1d1f 0%, #434344 100%); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.join-header-minimal p { + color: #86868b; + font-size: 1.25rem; + font-weight: 400; +} + +/* Modern Wizard Container */ +.wizard-container-modern { + display: flex; + max-width: 1200px; + margin: 20px auto 80px; + background: #fff; + border-radius: 24px; + box-shadow: 0 20px 40px rgba(0,0,0,0.08); + overflow: hidden; + min-height: 600px; + border: 1px solid rgba(0,0,0,0.04); +} + +/* Sidebar */ +.wizard-sidebar { + width: var(--sidebar-width); + background: var(--sidebar-bg); + padding: 60px 40px; + border-right: 1px solid rgba(0,0,0,0.05); + display: flex; + flex-direction: column; +} + +.wizard-progress-vertical { + position: relative; + display: flex; + flex-direction: column; + gap: 40px; +} + +.progress-step { + padding-left: 20px; + position: relative; + color: #86868b; + transition: var(--transition-smooth); + opacity: 0.6; + cursor: default; +} + +.progress-step::before { + content: ''; + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + width: 4px; + height: 4px; + background: #d2d2d7; + border-radius: 50%; + transition: var(--transition-smooth); +} + +.progress-step.active, +.progress-step.completed { + opacity: 1; + color: #1d1d1f; +} + +.progress-step.active::before { + background: var(--step-active-bg); + height: 24px; + border-radius: 2px; +} + +.progress-step.completed::before { + background: #34c759; +} + +.step-label { + display: block; + font-weight: 600; + font-size: 1.1rem; + margin-bottom: 4px; +} + +.step-sub { + font-size: 0.85rem; + color: #86868b; +} + +/* Content Area */ +.wizard-content-area { + flex: 1; + padding: var(--content-padding); + background: #fff; + display: flex; + flex-direction: column; + position: relative; +} + +.step-content { + display: none; + animation: fadeIn 0.5s ease; + flex: 1; + flex-direction: column; +} + +.step-content.active { + display: flex; +} + +@keyframes fadeIn { + from { opacity: 0; transform: translateY(10px); } + to { opacity: 1; transform: translateY(0); } +} + +.content-header { + margin-bottom: 40px; +} + +.content-header h2 { + font-size: 2rem; + font-weight: 700; + margin-bottom: 8px; +} + +.content-header p { + color: #86868b; + font-size: 1.1rem; +} + +/* Footer & Buttons */ +.step-footer { + margin-top: auto; + padding-top: 40px; + display: flex; + justify-content: space-between; + align-items: center; + border-top: 1px solid rgba(0,0,0,0.05); +} + +.btn-clean { + background: none; + border: none; + color: #86868b; + font-size: 1rem; + cursor: pointer; + transition: color 0.2s; + font-weight: 500; + padding: 10px 20px; + text-decoration: none; + display: inline-flex; + align-items: center; + gap: 8px; +} + +.btn-clean:hover { + color: #1d1d1f; +} + +.btn-clean:disabled { + opacity: 0.3; + cursor: not-allowed; +} + +.btn-primary-large { + background: #0071e3; + color: white; + border: none; + padding: 14px 32px; + border-radius: 980px; + font-size: 1rem; + font-weight: 600; + cursor: pointer; + transition: var(--transition-smooth); + display: inline-flex; + align-items: center; + gap: 8px; + text-decoration: none; +} + +.btn-primary-large:hover { + background: #0077ed; + transform: translateY(-1px); + box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3); +} + +.step-action-group { + display: flex; + gap: 16px; + align-items: center; +} + +.step-action-group .hidden { + display: none !important; +} + +.step-action-group .final-actions { + display: flex; + align-items: center; + gap: 12px; +} + +/* Device Cards */ +.card-content { + flex: 1; +} + +.device-selection-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 20px; +} + +.device-card { + border: 2px solid #f5f5f7; + border-radius: 16px; + padding: 30px 20px; + text-align: center; + cursor: pointer; + transition: var(--transition-smooth); + position: relative; + background: #fff; +} + +.device-card:hover { + border-color: #d2d2d7; + transform: translateY(-2px); +} + +.device-card.selected { + border-color: #0071e3; + background: rgba(0, 113, 227, 0.03); +} + +.icon-circle { + width: 60px; + height: 60px; + background: #f5f5f7; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + font-size: 24px; + margin: 0 auto 16px; + color: #1d1d1f; + transition: var(--transition-smooth); +} + +.device-card.selected .icon-circle { + background: #0071e3; + color: white; +} + +.check-mark { + position: absolute; + top: 16px; + right: 16px; + color: #0071e3; + opacity: 0; + transform: scale(0.5); + transition: var(--transition-smooth); +} + +.device-card.selected .check-mark { + opacity: 1; + transform: scale(1); + font-size: 1.2rem; +} + +.device-info h3 { + margin: 0 0 4px; + font-size: 1.1rem; +} +.device-info p { + margin: 0; + font-size: 0.9rem; + color: #86868b; +} + +/* Playstyle Cards */ +.playstyle-grid { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 20px; +} + +.playstyle-card { + display: flex; + align-items: center; + padding: 24px; + border-radius: 16px; + background: #f5f5f7; + gap: 20px; + transition: var(--transition-smooth); + border: 1px solid transparent; +} + +.playstyle-card:hover { + background: #fff; + box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Fixed shadow var */ + transform: translateY(-2px); +} + +.playstyle-visual { + width: 64px; + height: 64px; + border-radius: 12px; + background: #fff; + display: flex; + align-items: center; + justify-content: center; + font-size: 24px; + color: #1d1d1f; + flex-shrink: 0; +} + +/* Convention */ +.convention-wrapper { + background: #f5f5f7; + border-radius: 12px; + padding: 6px; + margin-bottom: 24px; +} + +.markdown-content { + background: #fff; + border-radius: 8px; + padding: 30px; + height: 400px; + overflow-y: auto; + font-size: 0.95rem; + line-height: 1.6; + color: #333; +} + +/* Custom Checkbox */ +.agreement-area { + display: flex; + align-items: center; + gap: 12px; + padding: 12px; + cursor: pointer; + border-radius: 8px; + transition: background 0.2s; +} + +.agreement-area:hover { + background: #f5f5f7; +} + +.custom-checkbox { + position: relative; + width: 24px; + height: 24px; + border: 2px solid #d2d2d7; + border-radius: 6px; + display: flex; /* Flex to center content */ + align-items: center; + justify-content: center; + transition: var(--transition-smooth); + background: #fff; +} + +.custom-checkbox input { + position: absolute; + opacity: 0; + width: 0; + height: 0; +} + +.checkmark { + display: none; + color: white; + font-size: 14px; +} + +/* When the checkbox input inside is checked */ +.custom-checkbox:has(input:checked) { + background-color: #0071e3; + border-color: #0071e3; +} + +.custom-checkbox:has(input:checked) .checkmark { + display: block; +} + +/* Launcher Recommendation */ +.launcher-box { + margin-top: 30px; + padding: 24px; + background: #f0f9ff; + border-radius: 16px; + border: 1px solid #bae6fd; +} + +.hidden { + display: none; +} + +/* Final Message */ +.final-message { + text-align: center; + margin-top: 30px; + color: #86868b; + font-style: italic; +} + +@media (max-width: 800px) { + .wizard-container-modern { + flex-direction: column; + margin: 20px; + } + .wizard-sidebar { + width: 100%; + padding: 20px; + flex-direction: row; + overflow-x: auto; + border-right: none; + border-bottom: 1px solid rgba(0,0,0,0.05); + gap: 20px; + } + .wizard-progress-vertical { + flex-direction: row; + width: 100%; + gap: 30px; + } + .progress-step { + padding-left: 0; + } + .progress-step::before { + display: none; + } + .step-sub { display: none; } + + .wizard-content-area { + padding: 30px; + } + + .device-selection-grid, .playstyle-grid { + grid-template-columns: 1fr; + } + + .step-footer { + flex-direction: column-reverse; + gap: 20px; + } + + .btn-clean { + width: 100%; + justify-content: center; + } + + .step-action-group { + width: 100%; + flex-direction: column; + } + + .btn-primary-large { + width: 100%; + justify-content: center; + } +} + +.step-dot { display: none; } + +/* Tutorial Steps */ +.tutorial-steps { + display: flex; + flex-direction: column; + gap: 20px; +} + +.tutorial-step { + display: flex; + gap: 20px; + padding: 20px; + background: #f5f5f7; + border-radius: 12px; + align-items: flex-start; +} + +.step-badge { + width: 32px; + height: 32px; + background: #0071e3; + color: white; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + font-weight: 600; + flex-shrink: 0; +} + +.step-text h4 { + margin: 0 0 4px; + font-size: 1.1rem; + color: #1d1d1f; +} + +.step-text p { + margin: 0; + color: #86868b; + font-size: 0.95rem; + line-height: 1.5; +} + +.step-text code { + background: #e8e8ed; + padding: 2px 6px; + border-radius: 4px; + font-family: monospace; + color: #1d1d1f; +} + +/* Enhanced Device Selection Styles */ +.launcher-box { + margin-top: 40px; + padding-top: 30px; + border-top: 1px solid rgba(0,0,0,0.05); + transition: opacity 0.4s ease, transform 0.4s ease; +} + +.recommendation-header { + text-align: center; + margin-bottom: 30px; +} + +.recommendation-header h3 { + font-size: 1.4rem; + color: #1d1d1f; + margin-bottom: 8px; +} + +.recommendation-header p { + color: #86868b; + font-size: 1rem; +} + +.launcher-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 20px; +} + +.launcher-card { + display: flex; + align-items: center; + padding: 24px; + background: #fbfbfd; + border: 1px solid rgba(0,0,0,0.05); + border-radius: 16px; + text-decoration: none; + color: inherit; + transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); + position: relative; + overflow: hidden; +} + +.launcher-card:hover { + background: #fff; + box-shadow: 0 8px 24px rgba(0,0,0,0.06); + transform: translateY(-2px); + border-color: rgba(0,0,0,0.08); +} + +.launcher-card.primary { + background: #fff; + border: 1px solid rgba(0, 113, 227, 0.2); + box-shadow: 0 4px 12px rgba(0, 113, 227, 0.05); +} + +.launcher-card.primary:hover { + box-shadow: 0 8px 24px rgba(0, 113, 227, 0.12); + border-color: rgba(0, 113, 227, 0.4); +} + +.launcher-icon { + width: 54px; + height: 54px; + background: #ffffff; + border-radius: 14px; + display: flex; + align-items: center; + justify-content: center; + font-size: 24px; + color: #1d1d1f; + margin-right: 20px; + box-shadow: 0 2px 8px rgba(0,0,0,0.05); + flex-shrink: 0; +} + +.launcher-card.primary .launcher-icon { + background: #0071e3; + color: white; +} + +.launcher-details { + flex: 1; +} + +.launcher-details h4 { + margin: 0 0 4px; + font-size: 1.1rem; + font-weight: 600; + display: flex; + align-items: center; + gap: 8px; +} + +.badge-rec { + font-size: 0.75rem; + background: #e1f0ff; + color: #0071e3; + padding: 2px 8px; + border-radius: 6px; + font-weight: 500; +} + +.launcher-details p { + margin: 0; + font-size: 0.9rem; + color: #86868b; + line-height: 1.4; +} + +.launcher-action { + color: #0071e3; + opacity: 0; + transform: translateX(-10px); + transition: all 0.3s ease; +} + +.launcher-card:hover .launcher-action { + opacity: 1; + transform: translateX(0); +} + +/* Server Address Box */ +.server-address-box { + background: #e8e8ed; + padding: 8px 12px; + border-radius: 8px; + display: inline-flex; + align-items: center; + gap: 12px; + margin: 8px 0; + font-family: monospace; + color: #1d1d1f; + border: 1px solid rgba(0,0,0,0.05); +} + +.server-address-box code { + background: none; + padding: 0; + font-size: 1rem; + font-weight: 600; +} + +.btn-copy { + background: #fff; + border: 1px solid #d2d2d7; + border-radius: 6px; + padding: 4px 10px; + font-size: 0.8rem; + cursor: pointer; + transition: all 0.2s; + color: #1d1d1f; + display: flex; + align-items: center; + gap: 4px; +} + +.btn-copy:hover { + background: #f5f5f7; + border-color: #86868b; +} + +.btn-copy:active { + transform: scale(0.95); +} + +.highlight-text { + color: #0071e3; + font-weight: 600; +} + +/* --- Added for Step 4 Interactive Enhancement --- */ + +/* Interactive Playstyle Cards */ +.playstyle-card { + cursor: pointer; + transition: var(--transition-smooth); + border: 2px solid transparent; /* Prepare for border change */ + /* Ensure existing styles don't conflict, but we assume they are basic cards */ +} + +.playstyle-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 24px rgba(0,0,0,0.12); +} + +.playstyle-card.selected { + border-color: #0071e3; + background-color: rgba(0, 113, 227, 0.04); + transform: translateY(-2px); + box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2); +} + +.icon-check-wrapper { + position: absolute; + top: 10px; + right: 10px; + color: #0071e3; + opacity: 0; + transform: scale(0.5); + transition: var(--transition-smooth); +} + +.playstyle-card.selected .icon-check-wrapper { + opacity: 1; + transform: scale(1); +} + +/* Details Section */ +.playstyle-details-container { + margin-top: 40px; + opacity: 0; + max-height: 0; + overflow: hidden; + transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); +} + +.playstyle-details-container.visible { + opacity: 1; + max-height: 1000px; /* Arbitrary large height */ + margin-bottom: 20px; +} + +.details-card { + background: #fbfbfd; + border-radius: 16px; + padding: 30px; + border: 1px solid rgba(0,0,0,0.06); + box-shadow: inset 0 0 20px rgba(0,0,0,0.02); +} + +.details-header { + margin-bottom: 24px; + padding-bottom: 16px; + border-bottom: 1px solid rgba(0,0,0,0.08); + display: flex; + align-items: center; + gap: 12px; + flex-wrap: wrap; +} + +.details-header h3 { + margin: 0; + font-size: 1.5rem; + color: #1d1d1f; +} + +.badge-subtitle { + background: #e8e8ed; + color: #6e6e73; + padding: 4px 12px; + border-radius: 980px; + font-size: 0.85rem; + font-weight: 500; +} + +.details-body { + display: flex; + flex-direction: column; + gap: 24px; +} + +.detail-section h4 { + margin: 0 0 8px 0; + font-size: 1rem; + color: #1d1d1f; + display: flex; + align-items: center; + gap: 8px; +} + +.detail-section h4 i { + color: #0071e3; +} + +.detail-section p { + margin: 0; + color: #424245; + line-height: 1.6; +} + +.detail-grid-row { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 30px; +} + +@media (max-width: 768px) { + .detail-grid-row { + grid-template-columns: 1fr; + } +} + +.detail-section ul { + margin: 0; + padding-left: 0; + list-style: none; +} + +.detail-section ul li { + padding-left: 24px; + position: relative; + margin-bottom: 8px; + color: #424245; + line-height: 1.5; +} + +.detail-section ul li::before { + content: "•"; + position: absolute; + left: 8px; + color: #86868b; +} + +.detail-section.check-list ul li::before { + content: "✓"; + color: #34c759; /* Green */ + font-weight: bold; +} + +.detail-section.warn-list ul li::before { + content: "!"; + color: #ff9f0a; /* Orange */ + font-weight: bold; + left: 8px; /* Adjust if needed */ +} + +/* --- Added for Step 4 Interactive Enhancement - Fix --- */ + +/* Details Section */ +.playstyle-details-container { + margin-top: 0; + opacity: 0; + max-height: 0; + overflow: hidden; + transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); +} + +.playstyle-details-container.visible { + opacity: 1; + max-height: 1000px; + margin-top: 40px; + margin-bottom: 20px; +} diff --git a/data/convention.md b/data/convention.md new file mode 100644 index 0000000..0044f38 --- /dev/null +++ b/data/convention.md @@ -0,0 +1,96 @@ +## 一、根基 + +白鹿原是一个在中国大陆运营的**非官方我的世界公益纯净生存服务器**。白鹿原始终坚持以中华人民共和国法律为基准,始终坚持 **《中华人民共和国网络安全法》**、**《二十四字社会主义核心价值观》**、**《网络游戏行业防沉迷自律公约》**。我们反对一切违反法律的行为,白鹿原玩家公约的编写充分遵循了上述法律及社会公共道德的要求,请玩家务必遵守。 + +白鹿原服务器完全遵守Mojang Studios 发布的 [EULA协议](https://account.mojang.com/documents/minecraft_eula):拒绝向任何玩家提供游戏的副本,不将Mojiang Studio创建的任何内容用于商业通途、不允许其他人以不公平或不合理的方式访问Mojiang Studio创建的任何内容、不通过Mojiang Studio创建的任何内容产生盈利。 + + +## 二、服务器公约 + + +1. 禁止作弊,如被证实为作弊,**所有参与者处予永久封禁**; + +2. 禁止破坏游戏氛围与交流环境的行为,**处罚措施根据以下情况按严重程度决定**: + 1. 恶意带节奏:所有参与者视严重程度处予 1\~3 天的临时封禁; + 2. 恶意寻衅滋事:所有参与者视严重程度处予 1\~30 天的临时封禁,极其严重者处予永久封禁; + 3. 恶意PVP:所有参与者视严重程度处予 1\~5 天的临时封禁,极其严重者处予永久封禁; + 4. 恶意人身攻击:所有参与者视严重程度处予 3\~10 天的临时封禁,极其严重者处予永久封禁; + 5. 恶意拉帮结派:所有参与者处予永久封禁; + +3. 禁止恶意偷盗、破坏服务器公共财产或使用不正当手段破坏其他玩家私有财产,**处罚措施根据以下情况按严重程度决定**: + 1. 恶意偷盗、破坏如主城等官方公共设施:所有参与者处予永久封禁; + 2. 恶意偷盗、破坏由玩家组织建立的内部性\[^1\]公共设施:如有玩家组织非普世性公约,则首先根据玩家组织非普世性公约进行处罚,玩家组织有有权利要求 白鹿原管理组按照2.3.4相关条例进行进一步处罚; + 3. 恶意偷盗、破坏由玩家组织建立的非内部性\[^2\]公共设施:所有参与者视严重程度处予 5\~30 天的临时封禁,极其严重者处予永久封禁; + 4. 恶意偷盗、破坏其他玩家已圈地保护的私人财产:所有参与者视严重程度处予 5\~30 天的临时封禁,极其严重者处予永久封禁; + 5. **恶意偷盗、破坏其他玩家未圈地保护的私人财产:如该财产未明确标明为公共财产,则白鹿原管理组不进行处理,反之则按2.3.4进行处罚;** + 6. 请着重注意:因未及时圈地或权限管理不当导致财产损失的,白鹿原管理组**不进行处理**; + +4. 每一名 白鹿原玩家都有义务为保持良好的游戏环境进行自我约束与监督,当发现其他玩家进行违反玩家公约所规定的行为时,请向白鹿原管理组检举; + +5. 玩家组织有权利设置门槛以限制玩家加入,有对成员进行管理的权利,同时也有设置玩家组织内部规则(服务器非普世性公约)的权利。玩家有权利向白鹿原管理组举报玩家组织的恶意行为; + +6. 任何因非管理员操作\[^3\]发生的动物、盔甲架、展示框等物品的丢失都不予以补偿; + +7. 服务器**允许制作与使用**涉及到高频红石的机械装置,但是如果因此导致服务器产生明显的卡顿,请自觉**暂时停止使用相关装置**; + +8. 禁止恶意圈地造成他人的不便,对于特殊资源(如女巫塔、神殿等)**不开发请不要随意圈地占有**。圈地遵循用多少圈多大的原则,**禁止一次性圈下过大的区域**; + +9. 当玩家进入服务器时,白鹿原管理组已经默认玩家同意了《服务器公约》的全部内容。如玩家不同意《公约》的全部内容,白鹿原管理组有权利禁止玩家进入服务器。 + + +## 三、QQ群公约 + + +1. 群名片中需包含自己的游戏ID; + +2. 禁止发布以下暴力低俗内容,**所有参与者处予禁言 1\~5 天**,极其严重者将踢出群聊: + 1. 令人不适的重口内容; + 2. 使用带有生殖器含义及其谐音的词语; + 3. 过度暴露的、露点的色情图片与儿童色情; + 4. 由同性恋内容发展而来的低俗梗(如:野兽先辈、大鸟转转转等); + 5. 含有违法、低俗内容的群名片; + 6. 其他可能引起多数人不适的内容; + +3. 严禁讨论以下敏感话题及关键字,**所有参与者将踢出群聊**: + 1. 散布谣言; + 2. 讨论与指点国家政策; + 3. 制作和发布包含国家领导人头像的表情包; + 4. 讨论和发布与科学上网相关的话题和软件; + 5. 反动、暴恐、宗教、邪教等扰乱社会治安的内容; + +4. 严禁破坏游戏与交流环境的行为,**所有参与者处予禁言 3\~10 天,极其严重者将踢出群聊**: + 1. 无理取闹的杠精; + 2. 辱骂管理员; + 3. 阴阳怪气引起多数人不适; + 4. 刷屏、影响他人正常聊天; + 5. 发送具有整蛊性质的、虚假的XML消息; + 6. 虚假广告(包括但不限于办证刷单招打字员等); + +5. 禁止多次、重复提问群公告已有的内容,从第二次提问开始禁言(提问次数-1)分钟; + + +## 四、处理流程 + +> 该版块将详细罗列白鹿原管理组如何处理部分违反《白鹿原玩家公约》的玩家的流程,欢迎各位白鹿原玩家进行监督。 + + +### 1.《白鹿服务器公约》中第二条的处理流程 + +当服务器内出现了破坏游戏氛围与交流环境的行为,管理组将会按照以下流程进行处理: + +* 接受玩家举报,开始调查,通过服务器日志,聊天截图,现场截图等收集证据; +* 在白鹿原玩家交流群内公开询问当事人与受害者,听取双方证词。如双方中的一方或多方不在玩家交流群内,直接按照《公约》中相关条例进行处理。非当事人或受害者在询问期间公然恶意带节奏的,处予1小时禁言处罚; +* 白鹿原管理组首先根据双方态度,进行调解。要求当事人向受害者进行道歉; +* 若双方无法接受调解,则按照《玩家公约》中相关条例进行处理。同时将发布处理公告与相关证据以供公开查阅; +* 如对结果有异议的,管理组不接受再审; + + +### 2.《白鹿原服务器公约》中第三条的处理流程 + +当服务器内出现了恶意偷盗、破坏服务器公共财产或使用不正当手段破坏其他玩家私有财产的行为,管理组将会按照以下流程进行处理: + +* 玩家需凭借截图证据向白鹿原管理组举报,管理组接受玩家举报,开始调查,通过服务器日志,聊天截图,现场截图等收集证据; +* 在白鹿原玩家交流群内公开询问当事人与受害者,听取双方证词。如双方中的一方或多方不在玩家交流群内,直接按照《公约》中相关条例进行处理。非当事人或受害者在询问期间公然恶意带节奏的,处予1小时禁言处罚; +* 白鹿原管理组首先根据双方态度,进行调解,要求当事人在期限内赔偿受害者的损失; +* 若双方无法接受调解,则按照《公约》中相关条例进行处理。同时将发布处理公告与相关证据以供公开查阅,同时管理组将代替当事人向受害者进行赔偿相关损失; +* 如对结果有异议的,管理组不接受再审; \ No newline at end of file diff --git a/join.html b/join.html new file mode 100644 index 0000000..43e3c93 --- /dev/null +++ b/join.html @@ -0,0 +1,246 @@ + + + + + + 加入游戏指引 - 白鹿原 Minecraft 服务器 + + + + + + + + + + + +
+
+

开启您的冒险

+
+ +
+ +
+
+
+
+
+ 公约 + 阅读须知 +
+
+
+
+
+ 设备 + 选择平台 +
+
+
+
+
+ 启动 + 配置教程 +
+
+
+
+
+ 出发 + 选择玩法 +
+
+
+
+ +
+ +
+
+

服务器公约

+

为了维护良好的游戏环境,请务必阅读并遵守以下规则。

+
+ +
+
+ +
+ + 正在加载公约内容... +
+
+
+ +
+
+ + +
+ +
+
+ + +
+
+

选择您的设备

+

工欲善其事,必先利其器。

+
+ +
+
+
+
+
+

电脑版

+

Win / Mac / Linux

+
+
+
+
+
+
+

iOS 设备

+

iPhone / iPad

+
+
+
+
+
+
+

安卓设备

+

Android 手机 / 平板

+
+
+
+
+ + +
+
+ + +
+
+

配置与启动

+

只需几步简单操作即可进入游戏。

+
+
+ +
+
+ + +
+
+

选择您的玩法

+

这里有无限可能,你想成为什么样的玩家?(点击卡片查看详情)

+
+ +
+
+ +
+
+ +
+
+

融入大型城镇

+

快速启航,共建繁华

+
+
+ + +
+
+ +
+
+

加入小型城镇

+

共同成长,见证历史

+
+
+ + +
+
+ +
+
+

与朋友共建

+

白手起家,开创时代

+
+
+ + +
+
+ +
+
+

独狼求生

+

自力更生,隐于山林

+
+
+
+ + +
+
+
+

玩法标题

+ 副标题 +
+
+
+

适合人群

+

...

+
+
+
+

优势

+
    +
    +
    +

    注意事项

    +
      +
      +
      +
      +
      +
      + +
      +

      无论你选择哪条路,都别忘了多探索世界,结识他人。我们期待看到你的故事在这里展开!

      +
      +
      +
      + + + +
      +
      +
      + + + + + + + + diff --git a/js/components.js b/js/components.js index 7aa82bb..e97d2d1 100644 --- a/js/components.js +++ b/js/components.js @@ -20,7 +20,7 @@ const Components = { 群聊 @@ -34,6 +34,7 @@ const Components = { 数据 赞助 群聊 + 加入游戏 `, diff --git a/js/join_script.js b/js/join_script.js new file mode 100644 index 0000000..2459a2d --- /dev/null +++ b/js/join_script.js @@ -0,0 +1,464 @@ +document.addEventListener('DOMContentLoaded', () => { + // State + let currentStep = 1; + let selectedDevice = null; + const totalSteps = 4; + + // Elements + const prevBtn = document.getElementById('btn-prev'); + const nextBtn = document.getElementById('btn-next'); + // Updated selector for new sidebar structure + const stepIndicators = document.querySelectorAll('.progress-step'); + const stepContents = document.querySelectorAll('.step-content'); + const conventionContent = document.getElementById('convention-content'); + + if (!conventionContent) { + console.error('Critical Error: Element #convention-content not found in DOM'); + return; + } + + const agreeCheckbox = document.getElementById('agree-checkbox'); + const deviceCards = document.querySelectorAll('.device-card'); + const recommendationSection = document.getElementById('launcher-recommendation'); + const recommendationContent = document.getElementById('recommendation-content'); + const tutorialContent = document.getElementById('tutorial-content'); + const step4Buttons = document.getElementById('step4-buttons'); + const mainWizardActions = document.querySelector('.wizard-actions'); + + console.log('DOM Elements loaded. Step contents found:', stepContents.length); + + // Fallback if marked is not loading correctly + if (typeof marked === 'undefined') { + console.warn("Marked not defined globally, checking for window.marked"); + if (window.marked) { + console.log("Found window.marked"); + // Assign to local variable if needed or just use window.marked + } + } + + // --- Step 1: Convention Loading --- + console.log('Fetching convention from data/convention.md ...'); + fetch('data/convention.md') + .then(response => { + console.log('Response status:', response.status); + if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`); + return response.text(); + }) + .then(markdown => { + console.log('Convention loaded, length:', markdown.length); + + let parser = null; + if (typeof marked !== 'undefined') { + if (typeof marked.parse === 'function') parser = marked.parse; + else if (typeof marked === 'function') parser = marked; + } else if (window.marked) { + if (typeof window.marked.parse === 'function') parser = window.marked.parse; + else if (typeof window.marked === 'function') parser = window.marked; + } + + if (parser) { + try { + const result = parser(markdown); + if (result instanceof Promise) { + result.then(html => conventionContent.innerHTML = html); + } else { + conventionContent.innerHTML = result; + } + } catch (e) { + console.error('Parse error:', e); + conventionContent.innerHTML = '
      ' + markdown + '
      '; + } + } else { + console.error('No markdown parser found'); + conventionContent.innerHTML = '
      ' + markdown + '
      '; + } + }) + .catch(error => { + console.error('Convention fetch error:', error); + conventionContent.innerHTML = `

      无法加载公约内容: ${error.message}

      `; + }); + + // --- Navigation Logic --- + function updateWizard() { + console.log('UpdateWizard called, step:', currentStep); + + // Update Indicators + stepIndicators.forEach(indicator => { + const step = parseInt(indicator.dataset.step); + if (step === currentStep) { + indicator.classList.add('active'); + indicator.classList.remove('completed'); + } else if (step < currentStep) { + indicator.classList.add('completed'); + indicator.classList.remove('active'); + } else { + indicator.classList.remove('active', 'completed'); + } + }); + + // Update Progress Bar Fill + const progressFill = document.getElementById('progress-fill'); + if (progressFill) { + const progress = ((currentStep - 1) / (totalSteps - 1)) * 100; + progressFill.style.width = `${progress}%`; + } + + // Update Content visibility with Animation timeout + stepContents.forEach(content => { + if (content.id === `step-${currentStep}`) { + content.classList.add('active'); + // Optional: ensure display block if handled by CSS alone or JS + } else { + content.classList.remove('active'); + } + }); + + // Buttons State + updateButtons(); + } + + function updateButtons() { + // Prev Button + if (prevBtn) prevBtn.disabled = currentStep === 1; + + // Next Button logic + if (currentStep === 1) { + // Step 1: Checkbox required + if (nextBtn) nextBtn.disabled = !agreeCheckbox.checked; + } else if (currentStep === 2) { + // Step 2: Device selection required + if (nextBtn) nextBtn.disabled = !selectedDevice; + } else { + if (nextBtn) nextBtn.disabled = false; + } + + // Step 4 special buttons visibility + if (currentStep === totalSteps) { + if (nextBtn) nextBtn.style.display = 'none'; + if (step4Buttons) step4Buttons.classList.remove('hidden'); + } else { + if (nextBtn) nextBtn.style.display = 'inline-flex'; + if (step4Buttons) step4Buttons.classList.add('hidden'); + } + } + + if (prevBtn) { + prevBtn.addEventListener('click', () => { + if (currentStep > 1) { + currentStep--; + updateWizard(); + } + }); + } + + if (nextBtn) { + nextBtn.addEventListener('click', () => { + if (currentStep < totalSteps) { + if (currentStep === 2) { + renderTutorial(); // Generate step 3 content before showing + // Also scroll to top for better ux + window.scrollTo({ top: 0, behavior: 'smooth' }); + } + currentStep++; + updateWizard(); + window.scrollTo({ top: 0, behavior: 'smooth' }); + } + }); + } + + // Step 1 Checkbox + if (agreeCheckbox) { + agreeCheckbox.addEventListener('change', updateButtons); + } + + // --- Step 2: Device Selection --- + const deviceData = { + pc: { + title: "电脑版 (Java Edition)", + recommendations: [ + { + name: "PCL2", + icon: "fas fa-cube", + desc: "界面精美,功能强大的现代化启动器(仅Win)", + url: "https://afdian.net/p/0164034c016c11ebafcb52540025c377", + primary: true + }, + { + name: "HMCL", + icon: "fas fa-horse-head", + desc: "历史悠久,跨平台支持好 (Win/Mac/Linux)", + url: "https://hmcl.huangyuhui.net/", + primary: false + } + ], + note: "推荐使用 PCL2 或 HMCL,均支持极大改善游戏体验。" + }, + ios: { + title: "iOS 设备", + recommendations: [ + { + name: "PojavLauncher", + icon: "fab fa-app-store-ios", + desc: "iOS 上运行 Java 版的唯一选择", + url: "https://apps.apple.com/us/app/pojavlauncher/id6443526546", + primary: true + } + ], + note: "需要 iOS 14.0 或更高版本。若未越狱,请保持 JIT 开启以获得最佳性能(部分版本可能需要)。" + }, + android: { + title: "安卓设备", + recommendations: [ + { + name: "FCL 启动器", + icon: "fab fa-android", + desc: "基于 FoldCraft 的高性能启动器", + url: "https://github.com/FoldCraftLauncher/FoldCraftLauncher/releases", + primary: true + }, + { + name: "PojavLauncher", + icon: "fas fa-gamepad", + desc: "经典的移动端 Java 版启动器", + url: "https://play.google.com/store/apps/details?id=net.kdt.pojavlaunch", + primary: false + } + ], + note: "建议设备拥有至少 4GB 运存以流畅运行 1.21 版本。" + } + }; + + deviceCards.forEach(card => { + card.addEventListener('click', () => { + // UI Update + deviceCards.forEach(c => c.classList.remove('selected')); + card.classList.add('selected'); + + const deviceType = card.dataset.device; + selectedDevice = deviceType; // Correctly update state + + // Show Recommendation + showRecommendation(deviceType); + + // Re-enable next button + updateButtons(); + }); + }); + + function showRecommendation(device) { + const data = deviceData[device]; + if (!data) return; + + if (recommendationSection) { + recommendationSection.classList.remove('hidden'); + // Little fade-in effect + recommendationSection.style.opacity = '0'; + setTimeout(() => recommendationSection.style.opacity = '1', 50); + } + + let cardsHtml = data.recommendations.map(req => ` + +
      + +
      +
      +

      ${req.name} ${req.primary ? '推荐' : ''}

      +

      ${req.desc}

      +
      +
      + +
      +
      + `).join(''); + + const html = ` +
      +

      为 ${data.title} 准备启动器

      +

      ${data.note}

      +
      +
      + ${cardsHtml} +
      + `; + + if (recommendationContent) recommendationContent.innerHTML = html; + } + + // --- Step 3: Tutorial Rendering --- + const deviceTutorials = { + pc: [ + { + title: '登录账号', + desc: '打开启动器(PCL2/HMCL),选择“添加账号”。推荐使用 Microsoft 账号登录拥有正版 Minecraft 的账户。' + }, + { + title: '安装游戏', + desc: '在启动器中创建一个新游戏配置,选择游戏版本 1.21.x。强烈建议安装 Fabric 加载器以获得更好的模组支持和性能优化。' + }, + { + title: '启动游戏', + desc: '等待游戏资源文件下载完成,点击启动游戏直到看到 Minecraft 主界面。' + }, + { + title: '加入服务器', + desc: `点击“多人游戏” -> “添加服务器”。
      + 服务器名称:白鹿原
      + 服务器地址: +
      + mcpure.lunadeer.cn + +
      + 点击“完成”并双击服务器即可加入。` + } + ], + ios: [ + { + title: '准备环境', + desc: '打开 PojavLauncher。若您的设备未越狱,请确保已启用 JIT(Just-In-Time)以获得可玩的帧率。' + }, + { + title: '登录账号', + desc: '点击“添加账户”,选择“Microsoft 账户”并完成登录流程。' + }, + { + title: '下载并启动', + desc: '点击“创建新配置”,选择版本 1.21.x。建议调整内存分配至设备总内存的 50% 左右,然后点击“启动”。' + }, + { + title: '加入服务器', + desc: `进入主界面后,选择 Multiplayer(多人游戏) -> Add Server(添加服务器)。
      + Address(地址): +
      + mcpure.lunadeer.cn + +
      + 点击 Done 并加入。` + } + ], + android: [ + { + title: '配置启动器', + desc: '打开 FCL 或 PojavLauncher。给予必要的存储权限。' + }, + { + title: '登录账号', + desc: '在账户设置中添加 Microsoft 账户。' + }, + { + title: '安装版本', + desc: '下载 1.21.x 游戏核心。FCL 用户可直接使用内置下载源加速下载。建议安装 OptiFine 或 Fabric+Sodium 以提升帧率。' + }, + { + title: '加入服务器', + desc: `启动游戏后,点击 Multiplayer(多人游戏) -> Add Server(添加服务器)。
      + Address(地址): +
      + mcpure.lunadeer.cn + +
      + 点击 Done 并加入。` + } + ] + }; + + function renderTutorial() { + const device = selectedDevice || 'pc'; // default to pc if somehow null + const steps = deviceTutorials[device] || deviceTutorials['pc']; + + let content = '
      '; + + steps.forEach((step, index) => { + content += ` +
      +
      ${index + 1}
      +
      +

      ${step.title}

      +

      ${step.desc}

      +
      +
      + `; + }); + + content += '
      '; + if (tutorialContent) { + tutorialContent.innerHTML = content; + } + } + + // --- Step 4: Playstyle Selection --- + const playstyleCards = document.querySelectorAll('.playstyle-card'); + const playstyleDetails = document.getElementById('playstyle-details'); + + const playstyleData = { + 'large-town': { + title: '融入大型城镇', + subtitle: '快速启航,共建繁华 (10+人)', + target: '希望跳过艰难的初期积累,快速投入大规模建造与合作的玩家。', + pros: ['资源无忧:可直接从公共仓库获取建材与工具。', '工业完善:享受成熟的自动化生产带来的便利。'], + cons: ['为了整体美观与规划,可能需要遵守城镇的建筑风格与管理安排,自由度相对受限。'] + }, + 'small-town': { + title: '加入小型城镇', + subtitle: '共同成长,见证历史 (3-10人)', + target: '喜欢参与从零到一的建设过程,享受亲手打造家园成就感的玩家。', + pros: ['发展参与感:亲身参与城镇的规划与扩张。', '自由度较高:在发展初期通常有更多的个人发挥空间。'], + cons: ['初期资源相对有限,需要与同伴共同努力。'] + }, + 'friends': { + title: '与朋友共建家园', + subtitle: '白手起家,开创时代 (1-3人)', + target: '拥有固定小团体,渴望一片完全属于自己的领地的玩家。', + pros: ['绝对自由:从选址到规划,一切由你定义。', '纯粹体验:体验最原始的协作与创造乐趣。'], + cons: ['这是一条充满挑战的道路,但从无到有建立的一切都将格外珍贵。'] + }, + 'solo': { + title: '独狼求生', + subtitle: '自力更生,隐于山林', + target: '享受孤独,崇尚一切亲力亲为的硬核生存玩家。', + pros: ['极致的自由与独立,你的世界只属于你。', '可尝试与其他玩家进行贸易换取无法独自获得的资源。'], + cons: ['一切都需要亲力亲为,生存挑战较大。'] + } + }; + + if (playstyleCards.length > 0 && playstyleDetails) { + playstyleCards.forEach(card => { + card.addEventListener('click', () => { + // UI Visual Selection + playstyleCards.forEach(c => c.classList.remove('selected')); + card.classList.add('selected'); + + // Get Data + const styleKey = card.dataset.style; + const data = playstyleData[styleKey]; + + if (data) { + // Populate Details + document.getElementById('detail-title').textContent = data.title; + document.getElementById('detail-subtitle').textContent = data.subtitle; + document.getElementById('detail-target').textContent = data.target; + + const prosList = document.getElementById('detail-pros'); + const consList = document.getElementById('detail-cons'); + + prosList.innerHTML = data.pros.map(p => `
    • ${p}
    • `).join(''); + consList.innerHTML = data.cons.map(c => `
    • ${c}
    • `).join(''); + + // Show Details + playstyleDetails.classList.add('visible'); + + // Optional: scroll into view gently if needed, or stick to bottom + playstyleDetails.scrollIntoView({ behavior: 'smooth', block: 'end' }); + } + }); + }); + } + + // Initial check + updateWizard(); +}); diff --git a/js/marked.min.js b/js/marked.min.js new file mode 100644 index 0000000..b4e0d73 --- /dev/null +++ b/js/marked.min.js @@ -0,0 +1,69 @@ +/** + * marked v15.0.12 - a markdown parser + * Copyright (c) 2011-2025, Christopher Jeffrey. (MIT Licensed) + * https://github.com/markedjs/marked + */ + +/** + * DO NOT EDIT THIS FILE + * The code in this file is generated from files in ./src/ + */ +(function(g,f){if(typeof exports=="object"&&typeof module<"u"){module.exports=f()}else if("function"==typeof define && define.amd){define("marked",f)}else {g["marked"]=f()}}(typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : this,function(){var exports={};var __exports=exports;var module={exports}; +"use strict";var H=Object.defineProperty;var be=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var we=Object.prototype.hasOwnProperty;var ye=(l,e)=>{for(var t in e)H(l,t,{get:e[t],enumerable:!0})},Re=(l,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of Te(e))!we.call(l,s)&&s!==t&&H(l,s,{get:()=>e[s],enumerable:!(n=be(e,s))||n.enumerable});return l};var Se=l=>Re(H({},"__esModule",{value:!0}),l);var kt={};ye(kt,{Hooks:()=>L,Lexer:()=>x,Marked:()=>E,Parser:()=>b,Renderer:()=>$,TextRenderer:()=>_,Tokenizer:()=>S,defaults:()=>w,getDefaults:()=>z,lexer:()=>ht,marked:()=>k,options:()=>it,parse:()=>pt,parseInline:()=>ct,parser:()=>ut,setOptions:()=>ot,use:()=>lt,walkTokens:()=>at});module.exports=Se(kt);function z(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var w=z();function N(l){w=l}var I={exec:()=>null};function h(l,e=""){let t=typeof l=="string"?l:l.source,n={replace:(s,i)=>{let r=typeof i=="string"?i:i.source;return r=r.replace(m.caret,"$1"),t=t.replace(s,r),n},getRegex:()=>new RegExp(t,e)};return n}var m={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceTabs:/^\t+/,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] /,listReplaceTask:/^\[[ xX]\] +/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,unescapeTest:/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:l=>new RegExp(`^( {0,3}${l})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}#`),htmlBeginRegex:l=>new RegExp(`^ {0,${Math.min(3,l-1)}}<(?:[a-z].*>|!--)`,"i")},$e=/^(?:[ \t]*(?:\n|$))+/,_e=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,Le=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,O=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,ze=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,F=/(?:[*+-]|\d{1,9}[.)])/,ie=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,oe=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),Me=h(ie).replace(/bull/g,F).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),Q=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,Pe=/^[^\n]+/,U=/(?!\s*\])(?:\\.|[^\[\]\\])+/,Ae=h(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",U).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),Ee=h(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,F).getRegex(),v="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",K=/|$))/,Ce=h("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",K).replace("tag",v).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),le=h(Q).replace("hr",O).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),Ie=h(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",le).getRegex(),X={blockquote:Ie,code:_e,def:Ae,fences:Le,heading:ze,hr:O,html:Ce,lheading:oe,list:Ee,newline:$e,paragraph:le,table:I,text:Pe},re=h("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",O).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex(),Oe={...X,lheading:Me,table:re,paragraph:h(Q).replace("hr",O).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",re).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",v).getRegex()},Be={...X,html:h(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",K).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:I,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:h(Q).replace("hr",O).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",oe).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},qe=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,ve=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,ae=/^( {2,}|\\)\n(?!\s*$)/,De=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\]*?>/g,ue=/^(?:\*+(?:((?!\*)punct)|[^\s*]))|^_+(?:((?!_)punct)|([^\s_]))/,je=h(ue,"u").replace(/punct/g,D).getRegex(),Fe=h(ue,"u").replace(/punct/g,pe).getRegex(),he="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",Qe=h(he,"gu").replace(/notPunctSpace/g,ce).replace(/punctSpace/g,W).replace(/punct/g,D).getRegex(),Ue=h(he,"gu").replace(/notPunctSpace/g,He).replace(/punctSpace/g,Ge).replace(/punct/g,pe).getRegex(),Ke=h("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,ce).replace(/punctSpace/g,W).replace(/punct/g,D).getRegex(),Xe=h(/\\(punct)/,"gu").replace(/punct/g,D).getRegex(),We=h(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),Je=h(K).replace("(?:-->|$)","-->").getRegex(),Ve=h("^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^").replace("comment",Je).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),q=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Ye=h(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]*(?:\n[ \t]*)?)(title))?\s*\)/).replace("label",q).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),ke=h(/^!?\[(label)\]\[(ref)\]/).replace("label",q).replace("ref",U).getRegex(),ge=h(/^!?\[(ref)\](?:\[\])?/).replace("ref",U).getRegex(),et=h("reflink|nolink(?!\\()","g").replace("reflink",ke).replace("nolink",ge).getRegex(),J={_backpedal:I,anyPunctuation:Xe,autolink:We,blockSkip:Ne,br:ae,code:ve,del:I,emStrongLDelim:je,emStrongRDelimAst:Qe,emStrongRDelimUnd:Ke,escape:qe,link:Ye,nolink:ge,punctuation:Ze,reflink:ke,reflinkSearch:et,tag:Ve,text:De,url:I},tt={...J,link:h(/^!?\[(label)\]\((.*?)\)/).replace("label",q).getRegex(),reflink:h(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",q).getRegex()},j={...J,emStrongRDelimAst:Ue,emStrongLDelim:Fe,url:h(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\.|[^\\])*?(?:\\.|[^\s~\\]))\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\":">",'"':""","'":"'"},fe=l=>st[l];function R(l,e){if(e){if(m.escapeTest.test(l))return l.replace(m.escapeReplace,fe)}else if(m.escapeTestNoEncode.test(l))return l.replace(m.escapeReplaceNoEncode,fe);return l}function V(l){try{l=encodeURI(l).replace(m.percentDecode,"%")}catch{return null}return l}function Y(l,e){let t=l.replace(m.findPipe,(i,r,o)=>{let a=!1,c=r;for(;--c>=0&&o[c]==="\\";)a=!a;return a?"|":" |"}),n=t.split(m.splitPipe),s=0;if(n[0].trim()||n.shift(),n.length>0&&!n.at(-1)?.trim()&&n.pop(),e)if(n.length>e)n.splice(e);else for(;n.length0?-2:-1}function me(l,e,t,n,s){let i=e.href,r=e.title||null,o=l[1].replace(s.other.outputLinkReplace,"$1");n.state.inLink=!0;let a={type:l[0].charAt(0)==="!"?"image":"link",raw:t,href:i,title:r,text:o,tokens:n.inlineTokens(o)};return n.state.inLink=!1,a}function rt(l,e,t){let n=l.match(t.other.indentCodeCompensation);if(n===null)return e;let s=n[1];return e.split(` +`).map(i=>{let r=i.match(t.other.beginningSpace);if(r===null)return i;let[o]=r;return o.length>=s.length?i.slice(s.length):i}).join(` +`)}var S=class{options;rules;lexer;constructor(e){this.options=e||w}space(e){let t=this.rules.block.newline.exec(e);if(t&&t[0].length>0)return{type:"space",raw:t[0]}}code(e){let t=this.rules.block.code.exec(e);if(t){let n=t[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:t[0],codeBlockStyle:"indented",text:this.options.pedantic?n:A(n,` +`)}}}fences(e){let t=this.rules.block.fences.exec(e);if(t){let n=t[0],s=rt(n,t[3]||"",this.rules);return{type:"code",raw:n,lang:t[2]?t[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):t[2],text:s}}}heading(e){let t=this.rules.block.heading.exec(e);if(t){let n=t[2].trim();if(this.rules.other.endingHash.test(n)){let s=A(n,"#");(this.options.pedantic||!s||this.rules.other.endingSpaceChar.test(s))&&(n=s.trim())}return{type:"heading",raw:t[0],depth:t[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(e){let t=this.rules.block.hr.exec(e);if(t)return{type:"hr",raw:A(t[0],` +`)}}blockquote(e){let t=this.rules.block.blockquote.exec(e);if(t){let n=A(t[0],` +`).split(` +`),s="",i="",r=[];for(;n.length>0;){let o=!1,a=[],c;for(c=0;c1,i={type:"list",raw:"",ordered:s,start:s?+n.slice(0,-1):"",loose:!1,items:[]};n=s?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=s?n:"[*+-]");let r=this.rules.other.listItemRegex(n),o=!1;for(;e;){let c=!1,p="",u="";if(!(t=r.exec(e))||this.rules.block.hr.test(e))break;p=t[0],e=e.substring(p.length);let d=t[2].split(` +`,1)[0].replace(this.rules.other.listReplaceTabs,Z=>" ".repeat(3*Z.length)),g=e.split(` +`,1)[0],T=!d.trim(),f=0;if(this.options.pedantic?(f=2,u=d.trimStart()):T?f=t[1].length+1:(f=t[2].search(this.rules.other.nonSpaceChar),f=f>4?1:f,u=d.slice(f),f+=t[1].length),T&&this.rules.other.blankLine.test(g)&&(p+=g+` +`,e=e.substring(g.length+1),c=!0),!c){let Z=this.rules.other.nextBulletRegex(f),te=this.rules.other.hrRegex(f),ne=this.rules.other.fencesBeginRegex(f),se=this.rules.other.headingBeginRegex(f),xe=this.rules.other.htmlBeginRegex(f);for(;e;){let G=e.split(` +`,1)[0],C;if(g=G,this.options.pedantic?(g=g.replace(this.rules.other.listReplaceNesting," "),C=g):C=g.replace(this.rules.other.tabCharGlobal," "),ne.test(g)||se.test(g)||xe.test(g)||Z.test(g)||te.test(g))break;if(C.search(this.rules.other.nonSpaceChar)>=f||!g.trim())u+=` +`+C.slice(f);else{if(T||d.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||ne.test(d)||se.test(d)||te.test(d))break;u+=` +`+g}!T&&!g.trim()&&(T=!0),p+=G+` +`,e=e.substring(G.length+1),d=C.slice(f)}}i.loose||(o?i.loose=!0:this.rules.other.doubleBlankLine.test(p)&&(o=!0));let y=null,ee;this.options.gfm&&(y=this.rules.other.listIsTask.exec(u),y&&(ee=y[0]!=="[ ] ",u=u.replace(this.rules.other.listReplaceTask,""))),i.items.push({type:"list_item",raw:p,task:!!y,checked:ee,loose:!1,text:u,tokens:[]}),i.raw+=p}let a=i.items.at(-1);if(a)a.raw=a.raw.trimEnd(),a.text=a.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let c=0;cd.type==="space"),u=p.length>0&&p.some(d=>this.rules.other.anyLine.test(d.raw));i.loose=u}if(i.loose)for(let c=0;c({text:a,tokens:this.lexer.inline(a),header:!1,align:r.align[c]})));return r}}lheading(e){let t=this.rules.block.lheading.exec(e);if(t)return{type:"heading",raw:t[0],depth:t[2].charAt(0)==="="?1:2,text:t[1],tokens:this.lexer.inline(t[1])}}paragraph(e){let t=this.rules.block.paragraph.exec(e);if(t){let n=t[1].charAt(t[1].length-1)===` +`?t[1].slice(0,-1):t[1];return{type:"paragraph",raw:t[0],text:n,tokens:this.lexer.inline(n)}}}text(e){let t=this.rules.block.text.exec(e);if(t)return{type:"text",raw:t[0],text:t[0],tokens:this.lexer.inline(t[0])}}escape(e){let t=this.rules.inline.escape.exec(e);if(t)return{type:"escape",raw:t[0],text:t[1]}}tag(e){let t=this.rules.inline.tag.exec(e);if(t)return!this.lexer.state.inLink&&this.rules.other.startATag.test(t[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(t[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(t[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(t[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:t[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:t[0]}}link(e){let t=this.rules.inline.link.exec(e);if(t){let n=t[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let r=A(n.slice(0,-1),"\\");if((n.length-r.length)%2===0)return}else{let r=de(t[2],"()");if(r===-2)return;if(r>-1){let a=(t[0].indexOf("!")===0?5:4)+t[1].length+r;t[2]=t[2].substring(0,r),t[0]=t[0].substring(0,a).trim(),t[3]=""}}let s=t[2],i="";if(this.options.pedantic){let r=this.rules.other.pedanticHrefTitle.exec(s);r&&(s=r[1],i=r[3])}else i=t[3]?t[3].slice(1,-1):"";return s=s.trim(),this.rules.other.startAngleBracket.test(s)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?s=s.slice(1):s=s.slice(1,-1)),me(t,{href:s&&s.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},t[0],this.lexer,this.rules)}}reflink(e,t){let n;if((n=this.rules.inline.reflink.exec(e))||(n=this.rules.inline.nolink.exec(e))){let s=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=t[s.toLowerCase()];if(!i){let r=n[0].charAt(0);return{type:"text",raw:r,text:r}}return me(n,i,n[0],this.lexer,this.rules)}}emStrong(e,t,n=""){let s=this.rules.inline.emStrongLDelim.exec(e);if(!s||s[3]&&n.match(this.rules.other.unicodeAlphaNumeric))return;if(!(s[1]||s[2]||"")||!n||this.rules.inline.punctuation.exec(n)){let r=[...s[0]].length-1,o,a,c=r,p=0,u=s[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(u.lastIndex=0,t=t.slice(-1*e.length+r);(s=u.exec(t))!=null;){if(o=s[1]||s[2]||s[3]||s[4]||s[5]||s[6],!o)continue;if(a=[...o].length,s[3]||s[4]){c+=a;continue}else if((s[5]||s[6])&&r%3&&!((r+a)%3)){p+=a;continue}if(c-=a,c>0)continue;a=Math.min(a,a+c+p);let d=[...s[0]][0].length,g=e.slice(0,r+s.index+d+a);if(Math.min(r,a)%2){let f=g.slice(1,-1);return{type:"em",raw:g,text:f,tokens:this.lexer.inlineTokens(f)}}let T=g.slice(2,-2);return{type:"strong",raw:g,text:T,tokens:this.lexer.inlineTokens(T)}}}}codespan(e){let t=this.rules.inline.code.exec(e);if(t){let n=t[2].replace(this.rules.other.newLineCharGlobal," "),s=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return s&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:t[0],text:n}}}br(e){let t=this.rules.inline.br.exec(e);if(t)return{type:"br",raw:t[0]}}del(e){let t=this.rules.inline.del.exec(e);if(t)return{type:"del",raw:t[0],text:t[2],tokens:this.lexer.inlineTokens(t[2])}}autolink(e){let t=this.rules.inline.autolink.exec(e);if(t){let n,s;return t[2]==="@"?(n=t[1],s="mailto:"+n):(n=t[1],s=n),{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}url(e){let t;if(t=this.rules.inline.url.exec(e)){let n,s;if(t[2]==="@")n=t[0],s="mailto:"+n;else{let i;do i=t[0],t[0]=this.rules.inline._backpedal.exec(t[0])?.[0]??"";while(i!==t[0]);n=t[0],t[1]==="www."?s="http://"+t[0]:s=t[0]}return{type:"link",raw:t[0],text:n,href:s,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(e){let t=this.rules.inline.text.exec(e);if(t){let n=this.lexer.state.inRawBlock;return{type:"text",raw:t[0],text:t[0],escaped:n}}}};var x=class l{tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||w,this.options.tokenizer=this.options.tokenizer||new S,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:B.normal,inline:P.normal};this.options.pedantic?(t.block=B.pedantic,t.inline=P.pedantic):this.options.gfm&&(t.block=B.gfm,this.options.breaks?t.inline=P.breaks:t.inline=P.gfm),this.tokenizer.rules=t}static get rules(){return{block:B,inline:P}}static lex(e,t){return new l(t).lex(e)}static lexInline(e,t){return new l(t).inlineTokens(e)}lex(e){e=e.replace(m.carriageReturn,` +`),this.blockTokens(e,this.tokens);for(let t=0;t(s=r.call({lexer:this},e,t))?(e=e.substring(s.raw.length),t.push(s),!0):!1))continue;if(s=this.tokenizer.space(e)){e=e.substring(s.raw.length);let r=t.at(-1);s.raw.length===1&&r!==void 0?r.raw+=` +`:t.push(s);continue}if(s=this.tokenizer.code(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=` +`+s.raw,r.text+=` +`+s.text,this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(s=this.tokenizer.fences(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.heading(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.hr(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.blockquote(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.list(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.html(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.def(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="paragraph"||r?.type==="text"?(r.raw+=` +`+s.raw,r.text+=` +`+s.raw,this.inlineQueue.at(-1).src=r.text):this.tokens.links[s.tag]||(this.tokens.links[s.tag]={href:s.href,title:s.title});continue}if(s=this.tokenizer.table(e)){e=e.substring(s.raw.length),t.push(s);continue}if(s=this.tokenizer.lheading(e)){e=e.substring(s.raw.length),t.push(s);continue}let i=e;if(this.options.extensions?.startBlock){let r=1/0,o=e.slice(1),a;this.options.extensions.startBlock.forEach(c=>{a=c.call({lexer:this},o),typeof a=="number"&&a>=0&&(r=Math.min(r,a))}),r<1/0&&r>=0&&(i=e.substring(0,r+1))}if(this.state.top&&(s=this.tokenizer.paragraph(i))){let r=t.at(-1);n&&r?.type==="paragraph"?(r.raw+=` +`+s.raw,r.text+=` +`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s),n=i.length!==e.length,e=e.substring(s.raw.length);continue}if(s=this.tokenizer.text(e)){e=e.substring(s.raw.length);let r=t.at(-1);r?.type==="text"?(r.raw+=` +`+s.raw,r.text+=` +`+s.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=r.text):t.push(s);continue}if(e){let r="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(r);break}else throw new Error(r)}}return this.state.top=!0,t}inline(e,t=[]){return this.inlineQueue.push({src:e,tokens:t}),t}inlineTokens(e,t=[]){let n=e,s=null;if(this.tokens.links){let o=Object.keys(this.tokens.links);if(o.length>0)for(;(s=this.tokenizer.rules.inline.reflinkSearch.exec(n))!=null;)o.includes(s[0].slice(s[0].lastIndexOf("[")+1,-1))&&(n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(s=this.tokenizer.rules.inline.anyPunctuation.exec(n))!=null;)n=n.slice(0,s.index)+"++"+n.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;(s=this.tokenizer.rules.inline.blockSkip.exec(n))!=null;)n=n.slice(0,s.index)+"["+"a".repeat(s[0].length-2)+"]"+n.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);let i=!1,r="";for(;e;){i||(r=""),i=!1;let o;if(this.options.extensions?.inline?.some(c=>(o=c.call({lexer:this},e,t))?(e=e.substring(o.raw.length),t.push(o),!0):!1))continue;if(o=this.tokenizer.escape(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.tag(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.link(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(o.raw.length);let c=t.at(-1);o.type==="text"&&c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(o=this.tokenizer.emStrong(e,n,r)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.codespan(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.br(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.del(e)){e=e.substring(o.raw.length),t.push(o);continue}if(o=this.tokenizer.autolink(e)){e=e.substring(o.raw.length),t.push(o);continue}if(!this.state.inLink&&(o=this.tokenizer.url(e))){e=e.substring(o.raw.length),t.push(o);continue}let a=e;if(this.options.extensions?.startInline){let c=1/0,p=e.slice(1),u;this.options.extensions.startInline.forEach(d=>{u=d.call({lexer:this},p),typeof u=="number"&&u>=0&&(c=Math.min(c,u))}),c<1/0&&c>=0&&(a=e.substring(0,c+1))}if(o=this.tokenizer.inlineText(a)){e=e.substring(o.raw.length),o.raw.slice(-1)!=="_"&&(r=o.raw.slice(-1)),i=!0;let c=t.at(-1);c?.type==="text"?(c.raw+=o.raw,c.text+=o.text):t.push(o);continue}if(e){let c="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(c);break}else throw new Error(c)}}return t}};var $=class{options;parser;constructor(e){this.options=e||w}space(e){return""}code({text:e,lang:t,escaped:n}){let s=(t||"").match(m.notSpaceStart)?.[0],i=e.replace(m.endingNewline,"")+` +`;return s?'
      '+(n?i:R(i,!0))+`
      +`:"
      "+(n?i:R(i,!0))+`
      +`}blockquote({tokens:e}){return`
      +${this.parser.parse(e)}
      +`}html({text:e}){return e}heading({tokens:e,depth:t}){return`${this.parser.parseInline(e)} +`}hr(e){return`
      +`}list(e){let t=e.ordered,n=e.start,s="";for(let o=0;o +`+s+" +`}listitem(e){let t="";if(e.task){let n=this.checkbox({checked:!!e.checked});e.loose?e.tokens[0]?.type==="paragraph"?(e.tokens[0].text=n+" "+e.tokens[0].text,e.tokens[0].tokens&&e.tokens[0].tokens.length>0&&e.tokens[0].tokens[0].type==="text"&&(e.tokens[0].tokens[0].text=n+" "+R(e.tokens[0].tokens[0].text),e.tokens[0].tokens[0].escaped=!0)):e.tokens.unshift({type:"text",raw:n+" ",text:n+" ",escaped:!0}):t+=n+" "}return t+=this.parser.parse(e.tokens,!!e.loose),`
    • ${t}
    • +`}checkbox({checked:e}){return"'}paragraph({tokens:e}){return`

      ${this.parser.parseInline(e)}

      +`}table(e){let t="",n="";for(let i=0;i${s}`),` + +`+t+` +`+s+`
      +`}tablerow({text:e}){return` +${e} +`}tablecell(e){let t=this.parser.parseInline(e.tokens),n=e.header?"th":"td";return(e.align?`<${n} align="${e.align}">`:`<${n}>`)+t+` +`}strong({tokens:e}){return`${this.parser.parseInline(e)}`}em({tokens:e}){return`${this.parser.parseInline(e)}`}codespan({text:e}){return`${R(e,!0)}`}br(e){return"
      "}del({tokens:e}){return`${this.parser.parseInline(e)}`}link({href:e,title:t,tokens:n}){let s=this.parser.parseInline(n),i=V(e);if(i===null)return s;e=i;let r='
      ",r}image({href:e,title:t,text:n,tokens:s}){s&&(n=this.parser.parseInline(s,this.parser.textRenderer));let i=V(e);if(i===null)return R(n);e=i;let r=`${n}{let o=i[r].flat(1/0);n=n.concat(this.walkTokens(o,t))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,t)))}}return n}use(...e){let t=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(n=>{let s={...n};if(s.async=this.defaults.async||s.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let r=t.renderers[i.name];r?t.renderers[i.name]=function(...o){let a=i.renderer.apply(this,o);return a===!1&&(a=r.apply(this,o)),a}:t.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let r=t[i.level];r?r.unshift(i.tokenizer):t[i.level]=[i.tokenizer],i.start&&(i.level==="block"?t.startBlock?t.startBlock.push(i.start):t.startBlock=[i.start]:i.level==="inline"&&(t.startInline?t.startInline.push(i.start):t.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(t.childTokens[i.name]=i.childTokens)}),s.extensions=t),n.renderer){let i=this.defaults.renderer||new $(this.defaults);for(let r in n.renderer){if(!(r in i))throw new Error(`renderer '${r}' does not exist`);if(["options","parser"].includes(r))continue;let o=r,a=n.renderer[o],c=i[o];i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u||""}}s.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new S(this.defaults);for(let r in n.tokenizer){if(!(r in i))throw new Error(`tokenizer '${r}' does not exist`);if(["options","rules","lexer"].includes(r))continue;let o=r,a=n.tokenizer[o],c=i[o];i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new L;for(let r in n.hooks){if(!(r in i))throw new Error(`hook '${r}' does not exist`);if(["options","block"].includes(r))continue;let o=r,a=n.hooks[o],c=i[o];L.passThroughHooks.has(r)?i[o]=p=>{if(this.defaults.async)return Promise.resolve(a.call(i,p)).then(d=>c.call(i,d));let u=a.call(i,p);return c.call(i,u)}:i[o]=(...p)=>{let u=a.apply(i,p);return u===!1&&(u=c.apply(i,p)),u}}s.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,r=n.walkTokens;s.walkTokens=function(o){let a=[];return a.push(r.call(this,o)),i&&(a=a.concat(i.call(this,o))),a}}this.defaults={...this.defaults,...s}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,t){return x.lex(e,t??this.defaults)}parser(e,t){return b.parse(e,t??this.defaults)}parseMarkdown(e){return(n,s)=>{let i={...s},r={...this.defaults,...i},o=this.onError(!!r.silent,!!r.async);if(this.defaults.async===!0&&i.async===!1)return o(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof n>"u"||n===null)return o(new Error("marked(): input parameter is undefined or null"));if(typeof n!="string")return o(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(n)+", string expected"));r.hooks&&(r.hooks.options=r,r.hooks.block=e);let a=r.hooks?r.hooks.provideLexer():e?x.lex:x.lexInline,c=r.hooks?r.hooks.provideParser():e?b.parse:b.parseInline;if(r.async)return Promise.resolve(r.hooks?r.hooks.preprocess(n):n).then(p=>a(p,r)).then(p=>r.hooks?r.hooks.processAllTokens(p):p).then(p=>r.walkTokens?Promise.all(this.walkTokens(p,r.walkTokens)).then(()=>p):p).then(p=>c(p,r)).then(p=>r.hooks?r.hooks.postprocess(p):p).catch(o);try{r.hooks&&(n=r.hooks.preprocess(n));let p=a(n,r);r.hooks&&(p=r.hooks.processAllTokens(p)),r.walkTokens&&this.walkTokens(p,r.walkTokens);let u=c(p,r);return r.hooks&&(u=r.hooks.postprocess(u)),u}catch(p){return o(p)}}}onError(e,t){return n=>{if(n.message+=` +Please report this to https://github.com/markedjs/marked.`,e){let s="

      An error occurred:

      "+R(n.message+"",!0)+"
      ";return t?Promise.resolve(s):s}if(t)return Promise.reject(n);throw n}}};var M=new E;function k(l,e){return M.parse(l,e)}k.options=k.setOptions=function(l){return M.setOptions(l),k.defaults=M.defaults,N(k.defaults),k};k.getDefaults=z;k.defaults=w;k.use=function(...l){return M.use(...l),k.defaults=M.defaults,N(k.defaults),k};k.walkTokens=function(l,e){return M.walkTokens(l,e)};k.parseInline=M.parseInline;k.Parser=b;k.parser=b.parse;k.Renderer=$;k.TextRenderer=_;k.Lexer=x;k.lexer=x.lex;k.Tokenizer=S;k.Hooks=L;k.parse=k;var it=k.options,ot=k.setOptions,lt=k.use,at=k.walkTokens,ct=k.parseInline,pt=k,ut=b.parse,ht=x.lex; + +if(__exports != exports)module.exports = exports;return module.exports}));