Fix broken links and remove author template

This commit is contained in:
Breandan Considine 2016-03-21 17:29:12 -04:00
parent 10140f33d4
commit b8fb86ac63
3 changed files with 2 additions and 5 deletions

View File

@ -2,9 +2,6 @@ import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.project.Project; import com.intellij.openapi.project.Project;
import com.intellij.openapi.ui.Messages; import com.intellij.openapi.ui.Messages;
/**
* Created by breandan on 11/25/2015.
*/
public class HelloAction extends AnAction { public class HelloAction extends AnAction {
public HelloAction() { public HelloAction() {
super("Hello"); super("Hello");

View File

@ -9,7 +9,7 @@ Annotator helps highlight and annotate any code based on specific rules.
In this tutorial we will annotate usages of our properties within Java code. In this tutorial we will annotate usages of our properties within Java code.
Let's consider a literal which starts with *"simple:"* as a usage of our property. Let's consider a literal which starts with *"simple:"* as a usage of our property.
``` ```java
{% include /code_samples/simple_language_plugin/src/com/simpleplugin/SimpleAnnotator.java %} {% include /code_samples/simple_language_plugin/src/com/simpleplugin/SimpleAnnotator.java %}
``` ```

View File

@ -51,7 +51,7 @@ public static PsiElement getNameIdentifier(SimpleProperty element) {
### 10.3. Define an element factory ### 10.3. Define an element factory
```java ```java
{% include /code_samples/simpleplugin/psi/impl/SimpleElementFactory.java %} {% include /code_samples/simple_language_plugin/src/com/simpleplugin/psi/SimpleElementFactory.java %}
``` ```
### 10.4. Update grammar and regenerate the parser ### 10.4. Update grammar and regenerate the parser