From 41fb44452692a0df16f714f97282aab879071090 Mon Sep 17 00:00:00 2001 From: Trey Hunner Date: Sat, 20 Jan 2024 20:47:57 -0800 Subject: [PATCH] Add rust library to website (#178) * Reformat core paragraph to use 1 sentence per line * Add link to Rust core library * Use bulleted list for listing core libraries --- index.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 4442987..5d46171 100644 --- a/index.html +++ b/index.html @@ -221,7 +221,25 @@

Give us your feedback

Create a plugin

-

EditorConfig plugins can be developed by using one of the EditorConfig core libraries. The EditorConfig core libraries accept as input the file being edited, find and parse relevant .editorconfig files, and pass back the properties that should be used. Please ignore any unrecognized properties and property values in your editor plugin for future compatibility, since new properties and permitted values will be added in the future. Currently there is a C library, a Python library, a JavaScript library, two Java libraries (EditorConfig Core Java Library and ec4j), a Lua library, a .NET library, a Ruby library, and a Go library.

+

+ EditorConfig plugins can be developed by using one of the EditorConfig core libraries. + The EditorConfig core libraries accept as input the file being edited, find and parse relevant .editorconfig files, and pass back the properties that should be used. + Please ignore any unrecognized properties and property values in your editor plugin for future compatibility, since new properties and permitted values will be added in the future. +

+

+ EditorConfig core libraries exist for many programming languages: +

+

If you are planning on creating a new plugin, use the mailing list to let us know so we can help out and link to your plugin once it's created. If you plan on using one of the EditorConfig cores as a library or command line interface, the C library documentation, Python library documentation or Java library documentation may be helpful.

More details can be found on the Plugin-How-To wiki page.