Tweaks to callouts

Fixes #10744
This commit is contained in:
Karen Metts 2019-05-02 04:34:29 -04:00
parent f6723e7ca9
commit c9846fc9c3
2 changed files with 16 additions and 16 deletions

View file

@ -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

View file

@ -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"