-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add hjson #471
feat: add hjson #471
Conversation
✅ Deploy Preview for shiki-matsu ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a small change needed. Thanks for your contribution!
scripts/grammarSources.ts
Outdated
@@ -165,6 +165,7 @@ export const githubGrammarSources: [string, string][] = [ | |||
['haml', 'https://github.com/karuna/haml-vscode/blob/master/syntaxes/haml.json'], | |||
['haskell', 'https://github.com/octref/language-haskell/blob/master/syntaxes/haskell.json'], | |||
['hcl', 'https://github.com/hashicorp/syntax/blob/main/syntaxes/hcl.tmGrammar.json'], | |||
['hjson', 'https://raw.githubusercontent.com/hjson/textmate-hjson/master/Syntaxes/Hjson.tmLanguage'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because of this:
shiki/scripts/util/download.ts
Lines 43 to 46 in 23dfa70
export function convertGHURLToDownloadURL(ghURL: string) { | |
const oldPath = url.parse(ghURL).path | |
return 'https://raw.githubusercontent.com' + oldPath.replace('/blob/', '/') | |
} |
You can use the URL directly:
https://github.com/textmate/json.tmbundle/blob/master/Syntaxes/JSON.tmLanguage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Edited.
Looks great. Thanks! |
Add a test if possible
Format all commit messages with Conventional Commits
I have read docs for adding a language.
I have searched around and this is the most up-to-date, actively maintained version of the language grammar.
I have added a sample file that includes a variety of language syntaxes and succinctly captures the idiosyncrasy of a language. See docs for requirement.