Skip to content

Commit

Permalink
fix(#525): disable broken markdown.math grammars (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
jensli authored May 7, 2023
1 parent ac34c5f commit 18507fa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.language_pack.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.tm4e.language_pack.feature"
label="%featureName"
version="0.1.1.qualifier"
version="0.2.0.qualifier"
provider-name="%featureProvider"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.language_pack.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

<artifactId>org.eclipse.tm4e.language_pack.feature</artifactId>
<packaging>eclipse-feature</packaging>
<version>0.1.1-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
</project>
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.language_pack/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Bundle-SymbolicName: org.eclipse.tm4e.language_pack;singleton:=true
Bundle-Version: 0.1.1.qualifier
Bundle-Version: 0.2.0.qualifier
Require-Bundle: org.eclipse.tm4e.ui;bundle-version="[0.1.0,2.0.0)",
org.eclipse.tm4e.registry;bundle-version="[0.1.0,2.0.0)",
org.eclipse.tm4e.languageconfiguration;bundle-version="[0.1.0,2.0.0)",
Expand Down
3 changes: 3 additions & 0 deletions org.eclipse.tm4e.language_pack/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,15 @@
-->

<!-- markdown-math -->
<!-- issues: broken because math.block begin regex not supported by Joni. Re-enable when the following is fixed
and integrated: https://github.com/microsoft/vscode/issues/181662
<extension point="org.eclipse.tm4e.registry.grammars">
<grammar scopeName="lngpck.text.html.markdown.math" path="markdown-math/md-math.tmLanguage.json"/>
<scopeNameContentTypeBinding scopeName="lngpck.text.html.markdown.math" contentTypeId="lng.markdown-math"/>
<grammar scopeName="lngpck.markdown.math.block" path="markdown-math/md-math-block.tmLanguage.json"/>
<grammar scopeName="lngpck.markdown.math.inline" path="markdown-math/md-math-inline.tmLanguage.json"/>
</extension>
-->

<!-- objective-c -->
<extension point="org.eclipse.core.contenttype.contentTypes">
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.tm4e.language_pack/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

<artifactId>org.eclipse.tm4e.language_pack</artifactId>
<packaging>eclipse-plugin</packaging>
<version>0.1.1-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
</project>

0 comments on commit 18507fa

Please sign in to comment.