You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "methods" sections of the how to develop a plugin docs
Asciidoctor as incorrectly passing backticks into the output when it
should have marked the words surrounded by backticks as code. I'm not
100% sure why it did that. The fix is to force macro evaluation
immediately on attribute assignment.
Copy file name to clipboardExpand all lines: docs/static/codec.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,6 @@
10
10
11
11
:getstarted: Let's step through creating a {plugintype} plugin using the https://github.com/logstash-plugins/logstash-codec-example/[example {plugintype} plugin].
12
12
13
-
:methodheader: Logstash codecs must implement the `register` method, and the `decode` method or the `encode` method (or both).
13
+
:methodheader: pass:m[Logstash codecs must implement the `register` method, and the `decode` method or the `encode` method (or both).]
Copy file name to clipboardExpand all lines: docs/static/filter.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,6 @@
9
9
10
10
:getstarted: Let's step through creating a {plugintype} plugin using the https://github.com/logstash-plugins/logstash-filter-example/[example {plugintype} plugin].
11
11
12
-
:methodheader: Logstash filters must implement the `register` and `filter` methods.
12
+
:methodheader: pass:m[Logstash filters must implement the `register` and `filter` methods.]
Copy file name to clipboardExpand all lines: docs/static/input.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,6 @@
7
7
8
8
:getstarted: Let's step through creating an {plugintype} plugin using the https://github.com/logstash-plugins/logstash-input-example/[example {plugintype} plugin].
9
9
10
-
:methodheader: Logstash inputs must implement two main methods: `register` and `run`.
10
+
:methodheader: pass:m[Logstash inputs must implement two main methods: `register` and `run`.]
Copy file name to clipboardExpand all lines: docs/static/output.asciidoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,6 @@
9
9
10
10
:getstarted: Let's step through creating an {plugintype} plugin using the https://github.com/logstash-plugins/logstash-output-example/[example {plugintype} plugin].
11
11
12
-
:methodheader: Logstash outputs must implement the `register` and `multi_receive` methods.
12
+
:methodheader: pass:m[Logstash outputs must implement the `register` and `multi_receive` methods.]
0 commit comments