Custom Language Tutorial: link code sample on GH

This commit is contained in:
Yann Cébron 2020-02-24 16:45:48 +01:00
parent 7d553d9e5e
commit a2cbc449f8

View File

@ -6,8 +6,9 @@ title: Custom Language Support Tutorial
In this tutorial we will add support for a [.properties](https://en.wikipedia.org/wiki/.properties) language and its usages within Java code.
IntelliJ Platform support for custom languages is discussed in more depth in the [Custom Language](/reference_guide/custom_language_support.md) section.
The example plugin used in this tutorial is the `simple_language_plugin` code sample.
The example plugin used in this tutorial is the [`simple_language_plugin`](https://github.com/JetBrains/intellij-sdk-docs/tree/master/code_samples/simple_language_plugin) code sample.
This a step-by-step tutorial, and it requires completing each step, in order:
* [1. Prerequisites](custom_language_support/prerequisites.md)
* [2. Language and File Type](custom_language_support/language_and_filetype.md)
* [3. Grammar and Parser](custom_language_support/grammar_and_parser.md)