mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
b3886c206f
* Init fix/markdown * Astro Markdown (#207) * Add Astro Markdown to VSCode Extension * Add Astro Markdown to Astro * refactor: update astro-markdown example * feat: remove embedded components from `.md` files * fix: resolve `.md.astro` files at runtime * chore: update markdown tests * feat: add <Markdown> component * chore: bump examples * chore: update example * fix: improve Markdown child handling * feat: harden markdown support, add code fence support, add automatic dedenting * chore: add weird markdown edge cases * chore: update remote-markdown examples * chore: add comment to Markdown.astro * feat: improve markdown support (codefences, nested inside HTML) * refactor: extract import specifier types to set * refactor: conditionally import markdown renderer * refactor: revert special-cased "astro/components" * refactor: revert special-cased "astro/components" * refactor: use astro/components/Markdown.astro * refactor: remove `.md.astro` support in favor of Markdown component * refactor: use regular .astro files * refactor: remove unused code * refactor: move Markdown inside Layout * wip: markdown scoped styles * feat: improve scoped styles in Markdown * feat: micromark => remark ecosystem * fix: markdown build * fix: markdown build * chore: add todo * fix: collect headers text * docs: add Markdown doc * chore: add changeset * docs: improve Markdown highlighting * refactor: prefer Set * refactor: exclude large unified deps * docs: update markdown docs Co-authored-by: Jonathan Neal <jonathantneal@hotmail.com> * chore: remove extra markdown deps * perf: optimize markdown * fix: unified/rehype deps * temp: fix markdown test * test: add TODO comment * fix: do not namespace frontmatter, just astro metadata * test: fix astro-markdown test * test: add realworld markdown example * fix: prism language bug * docs: update markdown docs * chore: bump dependencies * fix: escape codespan * fix: unterminated string literal * fix(vscode): inline dependencies * fix(vscode): dependencies * feat(vscode): embedded markdown * feat: add Markdown syntax highlighting * chore: improve markdown example * fix: markdown example * feat: highlighting improvements * chore: add changeset * fix: CodeBlock => CodeSpan * chore: get astro-markdown example running Co-authored-by: Jonathan Neal <jonathantneal@hotmail.com>
159 lines
4.9 KiB
JSON
159 lines
4.9 KiB
JSON
{
|
|
"name": "astro-vscode",
|
|
"displayName": "Astro",
|
|
"description": "Language support for Astro",
|
|
"icon": "assets/icon.png",
|
|
"type": "commonjs",
|
|
"galleryBanner": {
|
|
"color": "#FFBE2D",
|
|
"theme": "dark"
|
|
},
|
|
"version": "0.4.1",
|
|
"author": "Astro",
|
|
"publisher": "astro-build",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"vscode:prepublish": "yarn build",
|
|
"build": "astro-scripts build 'src/index.ts'",
|
|
"dev": "astro-scripts dev 'src/index.ts'"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.52.0"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:astro"
|
|
],
|
|
"dependencies": {
|
|
"astro-languageserver": "0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"vscode-html-languageservice": "^3.0.3",
|
|
"vscode-emmet-helper": "2.1.2",
|
|
"vscode-languageclient": "~7.0.0",
|
|
"astro-scripts": "0.0.1",
|
|
"@types/vscode": "^1.52.0"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"files": [
|
|
"dist/",
|
|
"languages/",
|
|
"syntaxes/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"directory": "vscode",
|
|
"url": "https://github.com/snowpackjs/astro"
|
|
},
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Astro configuration",
|
|
"properties": {
|
|
"astro.trace.server": {
|
|
"scope": "window",
|
|
"type": "string",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "Traces the communication between VS Code and the language server."
|
|
}
|
|
}
|
|
},
|
|
"languages": [
|
|
{
|
|
"id": "astro",
|
|
"extensions": [
|
|
".astro"
|
|
],
|
|
"aliases": [
|
|
"Astro"
|
|
],
|
|
"configuration": "./languages/astro-language-configuration.json"
|
|
},
|
|
{
|
|
"id": "astro-markdown",
|
|
"aliases": [
|
|
"Astro Markdown"
|
|
],
|
|
"configuration": "./languages/astro-markdown-language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "astro",
|
|
"scopeName": "text.html.astro",
|
|
"path": "./syntaxes/astro.tmLanguage.json",
|
|
"embeddedLanguages": {
|
|
"text.html.astro": "astro",
|
|
"text.html.markdown.astro": "astro-markdown",
|
|
"text.html": "html",
|
|
"source.css": "css",
|
|
"source.scss": "scss",
|
|
"source.sass": "sass",
|
|
"source.tsx": "typescriptreact",
|
|
"meta.embedded.block.frontmatter": "typescriptreact"
|
|
}
|
|
},
|
|
{
|
|
"language": "astro-markdown",
|
|
"scopeName": "text.html.markdown.astro",
|
|
"path": "./syntaxes/astro-markdown.tmLanguage.json",
|
|
"injectTo": [
|
|
"text.html.astro"
|
|
],
|
|
"embeddedLanguages": {
|
|
"text.html.astro": "astro",
|
|
"text.html.markdown.astro": "astro-markdown",
|
|
"text.html.markdown": "markdown",
|
|
"source.tsx": "typescriptreact",
|
|
"source.js": "javascript",
|
|
"source.css": "css",
|
|
"meta.embedded.block.frontmatter": "yaml",
|
|
"meta.embedded.block.css": "css",
|
|
"meta.embedded.block.astro": "astro",
|
|
"meta.embedded.block.ini": "ini",
|
|
"meta.embedded.block.java": "java",
|
|
"meta.embedded.block.lua": "lua",
|
|
"meta.embedded.block.makefile": "makefile",
|
|
"meta.embedded.block.perl": "perl",
|
|
"meta.embedded.block.r": "r",
|
|
"meta.embedded.block.ruby": "ruby",
|
|
"meta.embedded.block.php": "php",
|
|
"meta.embedded.block.sql": "sql",
|
|
"meta.embedded.block.vs_net": "vs_net",
|
|
"meta.embedded.block.xml": "xml",
|
|
"meta.embedded.block.xsl": "xsl",
|
|
"meta.embedded.block.yaml": "yaml",
|
|
"meta.embedded.block.dosbatch": "dosbatch",
|
|
"meta.embedded.block.clojure": "clojure",
|
|
"meta.embedded.block.coffee": "coffee",
|
|
"meta.embedded.block.c": "c",
|
|
"meta.embedded.block.cpp": "cpp",
|
|
"meta.embedded.block.diff": "diff",
|
|
"meta.embedded.block.dockerfile": "dockerfile",
|
|
"meta.embedded.block.go": "go",
|
|
"meta.embedded.block.groovy": "groovy",
|
|
"meta.embedded.block.pug": "jade",
|
|
"meta.embedded.block.javascript": "javascript",
|
|
"meta.embedded.block.json": "json",
|
|
"meta.embedded.block.less": "less",
|
|
"meta.embedded.block.objc": "objc",
|
|
"meta.embedded.block.scss": "scss",
|
|
"meta.embedded.block.perl6": "perl6",
|
|
"meta.embedded.block.powershell": "powershell",
|
|
"meta.embedded.block.python": "python",
|
|
"meta.embedded.block.rust": "rust",
|
|
"meta.embedded.block.scala": "scala",
|
|
"meta.embedded.block.shellscript": "shellscript",
|
|
"meta.embedded.block.typescript": "typescript",
|
|
"meta.embedded.block.typescriptreact": "typescriptreact",
|
|
"meta.embedded.block.csharp": "csharp",
|
|
"meta.embedded.block.fsharp": "fsharp"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|