remove editor.css

This commit is contained in:
gitfromwildan
2025-05-29 02:20:36 +07:00
parent 253166a6ee
commit 3280af7183
6 changed files with 62 additions and 110 deletions

View File

@@ -1,16 +1,54 @@
{
"DocuCards": {
"prefix": "card",
"body": [
"<CardGroup cols={2}>",
"<Card title=\"${1:Heading2}\" icon=\"${2:Heading2}\">",
" This is an example of card content with columns.",
"</Card>",
"<Card title=\"${3:Heading3}\" icon=\"${4:Heading3}\">",
" This is an example of card content with columns.",
"</Card>",
"</CardGroup>"
],
"description": "Create a DocuCards component on markdown."
}
"Docu Card Group": {
"prefix": "card-group",
"body": [
"<CardGroup cols={${1:2}}>",
" <Card title=\"${2:Card Title}\" icon=\"${3:Home}\">",
" ${4:Card content goes here. You can add **markdown** content.}",
" </Card>",
" <Card title=\"${5:Another Card}\" icon=\"${6:Settings}\">",
" ${7:More content here.}",
" </Card>",
"</CardGroup>"
],
"description": "Create a group of cards in a responsive grid"
},
"Docu Card": {
"prefix": "card",
"body": [
"<Card ",
" title=\"${1:Card Title}\"",
" icon=\"${2:Home}\"",
" href=\"${3:/optional-link}\"",
" ${4:horizontal}>",
" ${5:Card content goes here. You can add **markdown** content.}",
"</Card>"
],
"description": "Create a single card component"
},
"Docu Horizontal Card": {
"prefix": "card-horizontal",
"body": [
"<Card ",
" title=\"${1:Card Title}\"",
" icon=\"${2:Home}\"",
" href=\"${3:/optional-link}\"",
" horizontal>",
" ${4:Content appears next to the icon in a horizontal layout.}",
"</Card>"
],
"description": "Create a horizontal card layout"
},
"Docu Card With Link": {
"prefix": "card-link",
"body": [
"<Card ",
" title=\"${1:Card Title}\"",
" icon=\"${2:ExternalLink}\"",
" href=\"${3:https://example.com}\">",
" ${4:This card is clickable and links to an external URL.}",
"</Card>"
],
"description": "Create a clickable card that links to a URL"
}
}

View File

@@ -1,3 +0,0 @@
{
"recommendations": []
}

View File

@@ -1,20 +1,12 @@
{
"DocuTable": {
"prefix": "table",
"body": [
"| **${1:Feature}** | **${2:Description}** |",
"| ------------------------------- | ----------------------------------------------------- |",
"| ${3:MDX Support} | ${4:Write interactive documentation with MDX.} |",
"| Nested Pages | Organize content in a nested, hierarchical structure. |",
"| Blog Section | Include a dedicated blog section. |",
"| Pagination | Split content across multiple pages. |",
"| Syntax Highlighting | Highlight code for better readability. |",
"| Code Line Highlighting & Titles | Highlight specific lines with descriptive titles. |",
"| Interactive Code Blocks | Language-specific and interactive code display. |",
"| Custom Markdown Components | Embed custom, reusable components in your docs. |",
"| Static Site Generation | Generate a static, high-performance site. |",
"| SEO-Optimized | Structured for optimal search engine indexing. |"
],
"description": "Create a DocuTable component on markdown."
}
"DocuTable": {
"prefix": "table",
"body": [
"| **${1:Header 1}** | **${2:Header 2}** |",
"| ---------------- | ---------------- |",
"| ${3:Row 1, Col 1} | ${4:Row 1, Col 2} |",
"| ${5:Row 2, Col 1} | ${6:Row 2, Col 2} |"
],
"description": "Create a simple 2x2 markdown table"
}
}