|
@@ -29,13 +29,18 @@ public @interface FunctionInfo {
|
|
|
boolean preview() default false;
|
|
|
|
|
|
/**
|
|
|
- * The description of the function rendered in {@code META FUNCTIONS}
|
|
|
- * and the docs. These should be complete sentences.
|
|
|
+ * The description of the function rendered in the docs and kibana's
|
|
|
+ * json files that drive their IDE-like experience. These should be
|
|
|
+ * complete sentences but can contain asciidoc syntax. It is rendered
|
|
|
+ * as a single paragraph.
|
|
|
*/
|
|
|
String description() default "";
|
|
|
|
|
|
/**
|
|
|
- * Detailed descriptions of the function rendered in the docs.
|
|
|
+ * Detailed descriptions of the function rendered in the docs. This is
|
|
|
+ * rendered as a single paragraph following {@link #description()} in
|
|
|
+ * the docs and is <strong>excluded</strong> from Kibana's IDE-like
|
|
|
+ * experience. It can contain asciidoc syntax.
|
|
|
*/
|
|
|
String detailedDescription() default "";
|
|
|
|