diff --git a/docs/md_v2/marketplace/admin/admin.js b/docs/md_v2/marketplace/admin/admin.js
index ccc6c467..7bdc3fc5 100644
--- a/docs/md_v2/marketplace/admin/admin.js
+++ b/docs/md_v2/marketplace/admin/admin.js
@@ -529,29 +529,19 @@ class AdminDashboard {
-
-
- Supports markdown: **bold**, *italic*, [links](url), # headers, etc.
+
+
+ Markdown support: **bold**, *italic*, [links](url), # headers, code blocks, lists
-
-
+
+
+ Single markdown field with installation, examples, and complete guide. Code blocks get auto copy buttons.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Full documentation with API reference, examples, best practices, etc.
`;
@@ -734,11 +724,8 @@ class AdminDashboard {
data.featured = document.getElementById('form-featured').checked ? 1 : 0;
data.sponsored = document.getElementById('form-sponsored').checked ? 1 : 0;
data.long_description = document.getElementById('form-long-description').value;
- data.installation_command = document.getElementById('form-installation').value;
- data.examples = document.getElementById('form-examples').value;
data.integration_guide = document.getElementById('form-integration').value;
data.documentation = document.getElementById('form-documentation').value;
- data.requirements = document.getElementById('form-requirements').value;
} else if (type === 'articles') {
data.title = document.getElementById('form-title').value;
data.slug = this.generateSlug(data.title);
diff --git a/docs/md_v2/marketplace/app-detail.css b/docs/md_v2/marketplace/app-detail.css
index 590bea03..0e5d0002 100644
--- a/docs/md_v2/marketplace/app-detail.css
+++ b/docs/md_v2/marketplace/app-detail.css
@@ -510,6 +510,31 @@
line-height: 1.5;
}
+/* Markdown rendered code blocks */
+.integration-content pre,
+.docs-content pre {
+ background: var(--bg-dark);
+ border: 1px solid var(--border-color);
+ margin: 1rem 0;
+ padding: 1rem;
+ padding-top: 2.5rem; /* Space for copy button */
+ overflow-x: auto;
+ position: relative;
+ max-height: none; /* Remove any height restrictions */
+ height: auto; /* Allow content to expand */
+}
+
+.integration-content pre code,
+.docs-content pre code {
+ background: transparent;
+ padding: 0;
+ color: var(--text-secondary);
+ font-size: 0.875rem;
+ line-height: 1.5;
+ white-space: pre; /* Preserve whitespace and line breaks */
+ display: block;
+}
+
/* Feature Grid */
.feature-grid {
display: grid;
diff --git a/docs/md_v2/marketplace/app-detail.html b/docs/md_v2/marketplace/app-detail.html
index ef1138a8..fbc8c13d 100644
--- a/docs/md_v2/marketplace/app-detail.html
+++ b/docs/md_v2/marketplace/app-detail.html
@@ -80,20 +80,7 @@
-
Overview
Overview content goes here.
-
-
Key Features
-
- - Feature 1
- - Feature 2
- - Feature 3
-
-
-
Use Cases
-
-
Describe how this app can help your workflow.
-