diff --git a/docs/static/maintainer-guide.asciidoc b/docs/static/maintainer-guide.asciidoc index 7d3e0c9a0..ea4272a00 100644 --- a/docs/static/maintainer-guide.asciidoc +++ b/docs/static/maintainer-guide.asciidoc @@ -110,27 +110,27 @@ Please see following annotated example and see a concrete example in https://raw [source,markdown] ---- -## 1.0.x // <1> <2> - - change description // <3> - - tag: change description // <3> <4> - - tag1,tag2: change description // <3> <5> - - tag: Multi-line description // <3> <6> +## 1.0.x // <1> + - change description // <2> + - tag: change description // <3> + - tag1,tag2: change description // <4> + - tag: Multi-line description // <5> must be indented and can use additional markdown syntax - // <7> -## 1.0.0 // <8> + // <6> +## 1.0.0 // <7> [...] ---- -<1> Latest version is the first line of CHANGELOG.md -<2> Each version identifier should be a level-2 header using `##` -<3> One change description is described as a list item using a dash `-` aligned under the version identifier -<4> One change can be tagged by a word and suffixed by `:`. + +<1> Latest version is the first line of CHANGELOG.md. +Each version identifier should be a level-2 header using `##` +<2> One change description is described as a list item using a dash `-` aligned under the version identifier +<3> One change can be tagged by a word and suffixed by `:`. + Common tags are `bugfix`, `feature`, `doc`, `test` or `internal`. -<5> One change can have multiple tags separated by a comma and suffixed by `:` -<6> A multi-line change description must be properly indented -<7> Please take care to *separate versions with an empty line* -<8> Previous version identifier +<4> One change can have multiple tags separated by a comma and suffixed by `:` +<5> A multi-line change description must be properly indented +<6> Please take care to *separate versions with an empty line* +<7> Previous version identifier [float] ==== Continuous Integration diff --git a/docs/static/transforming-data.asciidoc b/docs/static/transforming-data.asciidoc index 769578ab7..9c2e8125e 100644 --- a/docs/static/transforming-data.asciidoc +++ b/docs/static/transforming-data.asciidoc @@ -535,7 +535,7 @@ filter { # using add_field here to add & rename values to the event root add_field => { server_name => "%{[server][0][description]}" } add_field => { user_firstname => "%{[user][0][firstname]}" } <5> - add_field => { user_lastname => "%{[user][0][lastname]}" } <5> + add_field => { user_lastname => "%{[user][0][lastname]}" } remove_field => ["server", "user"] jdbc_user => "logstash" jdbc_password => "example"