remove editor.css
This commit is contained in:
66
.vscode/card.code-snippets
vendored
66
.vscode/card.code-snippets
vendored
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
3
.vscode/extensions.json
vendored
3
.vscode/extensions.json
vendored
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"recommendations": []
|
||||
}
|
||||
28
.vscode/table.code-snippets
vendored
28
.vscode/table.code-snippets
vendored
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user