From b8fb86ac63ca34d39b0cbba9e3df1d5200c65522 Mon Sep 17 00:00:00 2001 From: Breandan Considine Date: Mon, 21 Mar 2016 17:29:12 -0400 Subject: [PATCH] Fix broken links and remove author template --- code_samples/gradle_plugin_demo/src/main/java/HelloAction.java | 3 --- tutorials/custom_language_support/annotator.md | 2 +- tutorials/custom_language_support/reference_contributor.md | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/code_samples/gradle_plugin_demo/src/main/java/HelloAction.java b/code_samples/gradle_plugin_demo/src/main/java/HelloAction.java index 9f5ea60ab..c7f956120 100644 --- a/code_samples/gradle_plugin_demo/src/main/java/HelloAction.java +++ b/code_samples/gradle_plugin_demo/src/main/java/HelloAction.java @@ -2,9 +2,6 @@ import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.Messages; -/** - * Created by breandan on 11/25/2015. - */ public class HelloAction extends AnAction { public HelloAction() { super("Hello"); diff --git a/tutorials/custom_language_support/annotator.md b/tutorials/custom_language_support/annotator.md index 36f18ec9b..813d5374f 100644 --- a/tutorials/custom_language_support/annotator.md +++ b/tutorials/custom_language_support/annotator.md @@ -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. 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 %} ``` diff --git a/tutorials/custom_language_support/reference_contributor.md b/tutorials/custom_language_support/reference_contributor.md index 08761d8e8..2c79bfdf5 100644 --- a/tutorials/custom_language_support/reference_contributor.md +++ b/tutorials/custom_language_support/reference_contributor.md @@ -51,7 +51,7 @@ public static PsiElement getNameIdentifier(SimpleProperty element) { ### 10.3. Define an element factory ```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